-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhk_rthk_ch.rss.xml
2926 lines (2871 loc) · 95.3 KB
/
hk_rthk_ch.rss.xml
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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="https://www.w3.org/2005/Atom" xmlns:content="https://purl.org/rss/1.0/modules/content/">
<channel>
<title>
rthk
</title>
<link>
https://news.rthk.hk/rthk/ch/latest-news.htm
</link>
<description>
rthk
</description>
<copyright>
© 香港電台 RTHK
</copyright>
<docs>
https://www.rssboard.org/rss-specification
</docs>
<generator>
python-feedgen
</generator>
<image>
<url>
<![CDATA[https://wsrv.nl/?n=-1&url=https://news.rthk.hk/rthk/templates/st_tyneo/favicon_144x144.png]]>
</url>
<title>
rthk
</title>
<link>
https://news.rthk.hk/rthk/ch/latest-news.htm
</link>
</image>
<language>
zh-HK
</language>
<webMaster>
webmaster@rthk.hk
</webMaster>
<item>
<title>
滬股半日跌0.4% 創業板指數跌逾1%
</title>
<link>
https://news.rthk.hk/rthk/ch/component/k2/1793450-20250227.htm
</link>
<description>
<![CDATA[<div>
<img alt="上證指數半日收報3366點,跌13點,創業板指數報2242點,跌幅1.14%。(港台圖片)" src="https://wsrv.nl/?n=-1&we&h=1080&output=webp&trim=1&url=https%3A%2F%2Fnewsstatic.rthk.hk%2Fimages%2Fmfile_1793450_1_20250227113358.jpg&q=85">
<br>
<div class="itemFullText">
內地股市反覆向下,創業板指數跌幅較大。算力相關股份、機械人概念股下跌,食品、旅遊、固態電池概念股上升。
<br>
<br>
上證指數半日收報3366點,跌13點,跌幅0.41%。
<br>
<br>
深證成份指數報10872點,跌83點,跌幅0.76%。
<br>
<br>
創業板指數報2242點,跌25點,跌幅1.14%。
</div>
<br>
<hr>
<p>
原始網址 Original URL:
<a href="https://news.rthk.hk/rthk/ch/component/k2/1793450-20250227.htm" rel="nofollow">
https://news.rthk.hk/rthk/ch/component/k2/1793450-20250227.htm
</a>
</p>
<p>
© rthk.hk
</p>
<p>
電子郵件 Email:
<a href="mailto:cnews@rthk.hk" rel="nofollow">
cnews@rthk.hk
</a>
</p>
</div>
]]>
</description>
<guid isPermaLink="true">
https://news.rthk.hk/rthk/ch/component/k2/1793450-20250227.htm
</guid>
<pubDate>
Thu, 27 Feb 2025 11:38:00 +0800
</pubDate>
</item>
<item>
<title>
南韓憲法法院裁定代總統拒絕任命憲院法官違法
</title>
<link>
https://news.rthk.hk/rthk/ch/component/k2/1793449-20250227.htm
</link>
<description>
<![CDATA[<div>
<img alt="法院指,崔相穆拒絕任命由在野黨推薦的法官馬恩赫,是侵犯南韓國會權利。(法新社資料圖片)" src="https://wsrv.nl/?n=-1&we&h=1080&output=webp&trim=1&url=https%3A%2F%2Fnewsstatic.rthk.hk%2Fimages%2Fmfile_1793449_1_20250227113355.jpg&q=90">
<br>
<div class="itemFullText">
南韓憲法法院裁定,代總統崔相穆拒絕任命第9名憲法法院法官是違憲。
<br>
<br>
法院指,崔相穆以缺乏朝野協議為由,拒絕任命由在野黨推薦的法官馬恩赫,是侵犯南韓國會權利,指崔相穆有義務任命國會推薦的法官人選。
<br>
<br>
韓聯社報道,馬恩赫是否獲任命備受關注,因為可能會影響法院正在審理的案件,包括總統尹錫烈的彈劾案。
</div>
<br>
<hr>
<p>
原始網址 Original URL:
<a href="https://news.rthk.hk/rthk/ch/component/k2/1793449-20250227.htm" rel="nofollow">
https://news.rthk.hk/rthk/ch/component/k2/1793449-20250227.htm
</a>
</p>
<p>
© rthk.hk
</p>
<p>
電子郵件 Email:
<a href="mailto:cnews@rthk.hk" rel="nofollow">
cnews@rthk.hk
</a>
</p>
</div>
]]>
</description>
<guid isPermaLink="true">
https://news.rthk.hk/rthk/ch/component/k2/1793449-20250227.htm
</guid>
<pubDate>
Thu, 27 Feb 2025 11:35:00 +0800
</pubDate>
</item>
<item>
<title>
財政預算案2025|陳茂波稱人工智能發展需配合基建與市場力量
</title>
<link>
https://news.rthk.hk/rthk/ch/component/k2/1793448-20250227.htm
</link>
<description>
<![CDATA[<div>
<br>
<div class="itemFullText">
</div>
<br>
<hr>
<p>
原始網址 Original URL:
<a href="https://news.rthk.hk/rthk/ch/component/k2/1793448-20250227.htm" rel="nofollow">
https://news.rthk.hk/rthk/ch/component/k2/1793448-20250227.htm
</a>
</p>
<p>
© rthk.hk
</p>
<p>
電子郵件 Email:
<a href="mailto:cnews@rthk.hk" rel="nofollow">
cnews@rthk.hk
</a>
</p>
</div>
]]>
</description>
<guid isPermaLink="true">
https://news.rthk.hk/rthk/ch/component/k2/1793448-20250227.htm
</guid>
<pubDate>
Thu, 27 Feb 2025 11:33:00 +0800
</pubDate>
</item>
<item>
<title>
財政預算案2025|有議員籲開源 陳茂波稱不過分倚賴地價收入
</title>
<link>
https://news.rthk.hk/rthk/ch/component/k2/1793447-20250227.htm
</link>
<description>
<![CDATA[<div>
<br>
<div class="itemFullText">
</div>
<br>
<hr>
<p>
原始網址 Original URL:
<a href="https://news.rthk.hk/rthk/ch/component/k2/1793447-20250227.htm" rel="nofollow">
https://news.rthk.hk/rthk/ch/component/k2/1793447-20250227.htm
</a>
</p>
<p>
© rthk.hk
</p>
<p>
電子郵件 Email:
<a href="mailto:cnews@rthk.hk" rel="nofollow">
cnews@rthk.hk
</a>
</p>
</div>
]]>
</description>
<guid isPermaLink="true">
https://news.rthk.hk/rthk/ch/component/k2/1793447-20250227.htm
</guid>
<pubDate>
Thu, 27 Feb 2025 11:26:00 +0800
</pubDate>
</item>
<item>
<title>
財政預算案2025|孫東稱高度重視及投入資源推動人工智能發展
</title>
<link>
https://news.rthk.hk/rthk/ch/component/k2/1793446-20250227.htm
</link>
<description>
<![CDATA[<div>
<br>
<div class="itemFullText">
世界數字科學院將在香港數碼港籌建「亞太研究院」,聚焦亞太地區的AI治理及相關標準制定。創新科技及工業局局長孫東在成立儀式暨國際人工智能論壇致辭表示,人工智慧是全球科學、經濟和社會發展的關鍵引擎,特區政府高度重視,並投入大量資源推動AI發展。
<br>
<br>
孫東又提到,昨日公布的財政預算案提出預留10億元成立「香港人工智能研發院」,研究所將引領人工智慧發展和行業應用,促進跨領域合作,為本港人工智能發展寫下新篇章,同時亦會關注AI的安全性、責任性和可信性問題。
</div>
<br>
<hr>
<p>
原始網址 Original URL:
<a href="https://news.rthk.hk/rthk/ch/component/k2/1793446-20250227.htm" rel="nofollow">
https://news.rthk.hk/rthk/ch/component/k2/1793446-20250227.htm
</a>
</p>
<p>
© rthk.hk
</p>
<p>
電子郵件 Email:
<a href="mailto:cnews@rthk.hk" rel="nofollow">
cnews@rthk.hk
</a>
</p>
</div>
]]>
</description>
<guid isPermaLink="true">
https://news.rthk.hk/rthk/ch/component/k2/1793446-20250227.htm
</guid>
<pubDate>
Thu, 27 Feb 2025 11:11:00 +0800
</pubDate>
</item>
<item>
<title>
財政預算案2025|兩大醫學院增60學額其中50個為第二學位
</title>
<link>
https://news.rthk.hk/rthk/ch/component/k2/1793445-20250227.htm
</link>
<description>
<![CDATA[<div>
<img alt="中大醫學院將適時公布有關「第二學位」的收生及課程安排。(港台圖片)" src="https://wsrv.nl/?n=-1&we&h=1080&output=webp&trim=1&url=https%3A%2F%2Fnewsstatic.rthk.hk%2Fimages%2Fmfile_1793445_1_20250227111543.jpg&q=80">
<img alt="港大及中大兩間醫學院將會合共增加60個學額,其中50個用作招收「第二學位」醫科生。(港台圖片)" src="https://wsrv.nl/?n=-1&we&h=1080&output=webp&trim=1&url=https%3A%2F%2Fnewsstatic.rthk.hk%2Fimages%2Fmfile_1793445_2_20250227111543.jpg&q=80">
<br>
<div class="itemFullText">
預算案提出,醫學生培訓學額將於2025/26學年增至650個。教育局向立法會提交文件顯示,港大及中大兩間醫學院將會合共增加60個學額,其中50個用作招收「第二學位」醫科生,其餘10個學額將分配予現有醫學課程。
<br>
<br>
文件指出,2025至2028的三個學年,八間資助大學第一年學士學位的學額維持每年15000個。
<br>
<br>
中大醫學院回覆查詢時表示,將適時公布有關「第二學位」的收生及課程安排。
</div>
<br>
<hr>
<p>
原始網址 Original URL:
<a href="https://news.rthk.hk/rthk/ch/component/k2/1793445-20250227.htm" rel="nofollow">
https://news.rthk.hk/rthk/ch/component/k2/1793445-20250227.htm
</a>
</p>
<p>
© rthk.hk
</p>
<p>
電子郵件 Email:
<a href="mailto:cnews@rthk.hk" rel="nofollow">
cnews@rthk.hk
</a>
</p>
</div>
]]>
</description>
<guid isPermaLink="true">
https://news.rthk.hk/rthk/ch/component/k2/1793445-20250227.htm
</guid>
<pubDate>
Thu, 27 Feb 2025 10:56:00 +0800
</pubDate>
</item>
<item>
<title>
墨西哥多名官員到華盛頓 尋求限期前與美國達成關稅協議
</title>
<link>
https://news.rthk.hk/rthk/ch/component/k2/1793444-20250227.htm
</link>
<description>
<![CDATA[<div>
<img alt="墨西哥多名官員將前往華盛頓與美國官員舉行會議。(路透社資料圖片)" src="https://wsrv.nl/?n=-1&we&h=1080&output=webp&trim=1&url=https%3A%2F%2Fnewsstatic.rthk.hk%2Fimages%2Fmfile_1793444_1_20250227104424.jpg&q=90">
<br>
<div class="itemFullText">
墨西哥總統辛鮑姆表示,由墨西哥外交部、公共安全部、國防部等多部門高級官員組成的代表團,將前往華盛頓與美國官員舉行會議,以達成兩國之間的安全協調協議。
<br>
<br>
辛鮑姆表示,會談的準備工作已經進行幾天,她的特使將在主權框架內尋求達成協議,強調墨西哥尋求永久暫停對出口到美國的產品徵收關稅,並希望對方提供更多支援,以阻止武器流入墨西哥,遏止在墨西哥的有組織犯罪行為。
<br>
<br>
墨西哥外貿部表示,美方認可墨西哥在非法毒品和移民問題上所做的工作,雙方正推進合作談判,以盡快達成關稅協議。
<br>
<br>
美國特朗普星期三表示,針對墨西哥和加拿大進口商品的新關稅將於4月2日生效。
</div>
<br>
<hr>
<p>
原始網址 Original URL:
<a href="https://news.rthk.hk/rthk/ch/component/k2/1793444-20250227.htm" rel="nofollow">
https://news.rthk.hk/rthk/ch/component/k2/1793444-20250227.htm
</a>
</p>
<p>
© rthk.hk
</p>
<p>
電子郵件 Email:
<a href="mailto:cnews@rthk.hk" rel="nofollow">
cnews@rthk.hk
</a>
</p>
</div>
]]>
</description>
<guid isPermaLink="true">
https://news.rthk.hk/rthk/ch/component/k2/1793444-20250227.htm
</guid>
<pubDate>
Thu, 27 Feb 2025 10:54:00 +0800
</pubDate>
</item>
<item>
<title>
日本發現中方無人機在沖繩周邊飛行
</title>
<link>
https://news.rthk.hk/rthk/ch/component/k2/1793443-20250227.htm
</link>
<description>
<![CDATA[<div>
<img alt="日本防衛省發布中方GJ-2無人機照片。(日本防衛省)" src="https://wsrv.nl/?n=-1&we&h=1080&output=webp&trim=1&url=https%3A%2F%2Fnewsstatic.rthk.hk%2Fimages%2Fmfile_1793443_1_20250227104047.jpg&q=90">
<br>
<div class="itemFullText">
日本防衛省稱,首次發現中國軍方一架GJ-2偵察攻擊型無人機,在沖繩周邊的日本防空識別區飛行。日本航空自衛隊的F-15戰機緊急升空應對,共同社報道,沒有發生領空侵犯及危險行動。
<br>
<br>
防衛省表示,無人機從中國方面飛來,通過沖繩本島和宮古島之間,飛行至奄美大島近海之後折返。
</div>
<br>
<hr>
<p>
原始網址 Original URL:
<a href="https://news.rthk.hk/rthk/ch/component/k2/1793443-20250227.htm" rel="nofollow">
https://news.rthk.hk/rthk/ch/component/k2/1793443-20250227.htm
</a>
</p>
<p>
© rthk.hk
</p>
<p>
電子郵件 Email:
<a href="mailto:cnews@rthk.hk" rel="nofollow">
cnews@rthk.hk
</a>
</p>
</div>
]]>
</description>
<guid isPermaLink="true">
https://news.rthk.hk/rthk/ch/component/k2/1793443-20250227.htm
</guid>
<pubDate>
Thu, 27 Feb 2025 10:40:00 +0800
</pubDate>
</item>
<item>
<title>
日股半日升56點
</title>
<link>
https://news.rthk.hk/rthk/ch/component/k2/1793442-20250227.htm
</link>
<description>
<![CDATA[<div>
<img alt="日經指數報38198點,升56點,半日升幅0.15%。(日本交易所JPX圖片)" src="https://wsrv.nl/?n=-1&we&h=1080&output=webp&trim=1&url=https%3A%2F%2Fnewsstatic.rthk.hk%2Fimages%2Fmfile_1793442_1_20250227103415.jpg&q=85">
<br>
<div class="itemFullText">
東京股市半日升逾50點。
<br>
<br>
日經指數報38198點,升56點,半日升幅0.15%。
</div>
<br>
<hr>
<p>
原始網址 Original URL:
<a href="https://news.rthk.hk/rthk/ch/component/k2/1793442-20250227.htm" rel="nofollow">
https://news.rthk.hk/rthk/ch/component/k2/1793442-20250227.htm
</a>
</p>
<p>
© rthk.hk
</p>
<p>
電子郵件 Email:
<a href="mailto:cnews@rthk.hk" rel="nofollow">
cnews@rthk.hk
</a>
</p>
</div>
]]>
</description>
<guid isPermaLink="true">
https://news.rthk.hk/rthk/ch/component/k2/1793442-20250227.htm
</guid>
<pubDate>
Thu, 27 Feb 2025 10:35:00 +0800
</pubDate>
</item>
<item>
<title>
港股創3年新高後轉跌 中資電信及公用股偏軟
</title>
<link>
https://news.rthk.hk/rthk/ch/component/k2/1793441-20250227.htm
</link>
<description>
<![CDATA[<div>
<img alt="港股升穿24000點關口,恒生指數最多曾升近290點,觸及24076點,創3年新高,其後轉跌。(港台圖片)" src="https://wsrv.nl/?n=-1&we&h=1080&output=webp&trim=1&url=https%3A%2F%2Fnewsstatic.rthk.hk%2Fimages%2Fmfile_1793441_1_20250227102940.jpg&q=10">
<br>
<div class="itemFullText">
港股升穿24000點關口,恒生指數最多曾升近290點,觸及24076點,創3年新高,其後轉跌,較早時報23764點,跌23點,跌幅0.1%。
<br>
<br>
科技指數報5946點,跌7點,跌幅0.12%。
<br>
<br>
中資電信、內險、內銀、公用股偏軟,消費、汽車股上升。
</div>
<br>
<hr>
<p>
原始網址 Original URL:
<a href="https://news.rthk.hk/rthk/ch/component/k2/1793441-20250227.htm" rel="nofollow">
https://news.rthk.hk/rthk/ch/component/k2/1793441-20250227.htm
</a>
</p>
<p>
© rthk.hk
</p>
<p>
電子郵件 Email:
<a href="mailto:cnews@rthk.hk" rel="nofollow">
cnews@rthk.hk
</a>
</p>
</div>
]]>
</description>
<guid isPermaLink="true">
https://news.rthk.hk/rthk/ch/component/k2/1793441-20250227.htm
</guid>
<pubDate>
Thu, 27 Feb 2025 10:30:00 +0800
</pubDate>
</item>
<item>
<title>
元朗公路車禍一死六傷 輕型貨車司機送院不治
</title>
<link>
https://news.rthk.hk/rthk/ch/component/k2/1793438-20250227.htm
</link>
<description>
<![CDATA[<div>
<img alt="一名輕型貨車司機被困,救援人員接報到場將他救出,送往博愛醫院搶救後不治。(網上片段截圖)" src="https://wsrv.nl/?n=-1&we&h=1080&output=webp&trim=1&url=https%3A%2F%2Fnewsstatic.rthk.hk%2Fimages%2Fmfile_1793438_1_20250227103657.jpg&q=90">
<br>
<div class="itemFullText">
元朗公路發生7車相撞意外,1人死亡、6人受傷。
<br>
<br>
事發在早上約7時半,現場是元朗公路往上水方向近十八鄉交匯處,意外涉及私家車及貨車,一名輕型貨車男司機被困,救援人員接報到場將他救出,送往博愛醫院搶救後不治。
<br>
<br>
意外中另有6人受傷需要送院,包括3男2女以及1名男童。
</div>
<br>
<hr>
<p>
原始網址 Original URL:
<a href="https://news.rthk.hk/rthk/ch/component/k2/1793438-20250227.htm" rel="nofollow">
https://news.rthk.hk/rthk/ch/component/k2/1793438-20250227.htm
</a>
</p>
<p>
© rthk.hk
</p>
<p>
電子郵件 Email:
<a href="mailto:cnews@rthk.hk" rel="nofollow">
cnews@rthk.hk
</a>
</p>
</div>
]]>
</description>
<guid isPermaLink="true">
https://news.rthk.hk/rthk/ch/component/k2/1793438-20250227.htm
</guid>
<pubDate>
Thu, 27 Feb 2025 09:57:00 +0800
</pubDate>
</item>
<item>
<title>
恒指升幅擴至逾200點 升穿24000點
</title>
<link>
https://news.rthk.hk/rthk/ch/component/k2/1793436-20250227.htm
</link>
<description>
<![CDATA[<div>
<img alt="恒指較早時報24013點,升225點,升近1%。(港台圖片)" src="https://wsrv.nl/?n=-1&we&h=1080&output=webp&trim=1&url=https%3A%2F%2Fnewsstatic.rthk.hk%2Fimages%2Fmfile_1793436_1_20250227094914.jpg&q=75">
<br>
<div class="itemFullText">
港股開市後升幅擴大,恒指一度重上24000點,再創逾3年新高,較早時報24013點,升225點,升近1%。
<br>
<br>
科技指數突破6000點,報6059點,升近1.8%。
</div>
<br>
<hr>
<p>
原始網址 Original URL:
<a href="https://news.rthk.hk/rthk/ch/component/k2/1793436-20250227.htm" rel="nofollow">
https://news.rthk.hk/rthk/ch/component/k2/1793436-20250227.htm
</a>
</p>
<p>
© rthk.hk
</p>
<p>
電子郵件 Email:
<a href="mailto:cnews@rthk.hk" rel="nofollow">
cnews@rthk.hk
</a>
</p>
</div>
]]>
</description>
<guid isPermaLink="true">
https://news.rthk.hk/rthk/ch/component/k2/1793436-20250227.htm
</guid>
<pubDate>
Thu, 27 Feb 2025 09:49:00 +0800
</pubDate>
</item>
<item>
<title>
歐盟稱將對貿易壁壘作出堅決及迅速回應
</title>
<link>
https://news.rthk.hk/rthk/ch/component/k2/1793435-20250227.htm
</link>
<description>
<![CDATA[<div>
<img alt="歐盟表示將對妨礙貿易自由和公平的不合理貿易壁壘,採取堅決及迅速的回應措施。(路透社)" src="https://wsrv.nl/?n=-1&we&h=1080&output=webp&trim=1&url=https%3A%2F%2Fnewsstatic.rthk.hk%2Fimages%2Fmfile_1793435_1_20250227094245.jpg&q=75">
<br>
<div class="itemFullText">
歐盟委員會發言人表示,歐盟將對妨礙貿易自由和公平的不合理貿易壁壘,採取堅決及迅速的回應措施。這名發言人強調,歐盟是全球規模最大的自由貿易市場,對美國具有重要價值。
<br>
<br>
美國總統特朗普說,已決定對歐盟徵收25%關稅,適用於汽車和其他各種商品,將很快宣布。
<br>
<br>
特朗普說,歐盟「佔美國便宜」,以各種理由「拒絕接受美國的汽車和農產品」,美國和歐盟之間有大約「3000億美元」的貿易逆差,又指歐盟成立的目的是為了「搞垮」美國。
</div>
<br>
<hr>
<p>
原始網址 Original URL:
<a href="https://news.rthk.hk/rthk/ch/component/k2/1793435-20250227.htm" rel="nofollow">
https://news.rthk.hk/rthk/ch/component/k2/1793435-20250227.htm
</a>
</p>
<p>
© rthk.hk
</p>
<p>
電子郵件 Email:
<a href="mailto:cnews@rthk.hk" rel="nofollow">
cnews@rthk.hk
</a>
</p>
</div>
]]>
</description>
<guid isPermaLink="true">
https://news.rthk.hk/rthk/ch/component/k2/1793435-20250227.htm
</guid>
<pubDate>
Thu, 27 Feb 2025 09:39:00 +0800
</pubDate>
</item>
<item>
<title>
滬深股市初段窄幅上落
</title>
<link>
https://news.rthk.hk/rthk/ch/component/k2/1793434-20250227.htm
</link>
<description>
<![CDATA[<div>
<img alt="上證指數較早時報3375點,跌4點,跌幅0.13%。(港台圖片)" src="https://wsrv.nl/?n=-1&we&h=1080&output=webp&trim=1&url=https%3A%2F%2Fnewsstatic.rthk.hk%2Fimages%2Fmfile_1793434_1_20250227093706.jpg&q=85">
<br>
<div class="itemFullText">
內地股市初段窄幅上落。
<br>
<br>
上證指數較早時報3375點,跌4點,跌幅0.13%。
<br>
<br>
深證成份指數報10977點,升21點,升幅0.2%。
<br>
<br>
創業板指數報2271點,升3點,升幅0.14%。
</div>
<br>
<hr>
<p>
原始網址 Original URL:
<a href="https://news.rthk.hk/rthk/ch/component/k2/1793434-20250227.htm" rel="nofollow">
https://news.rthk.hk/rthk/ch/component/k2/1793434-20250227.htm
</a>
</p>
<p>
© rthk.hk
</p>
<p>
電子郵件 Email:
<a href="mailto:cnews@rthk.hk" rel="nofollow">
cnews@rthk.hk
</a>
</p>
</div>
]]>
</description>
<guid isPermaLink="true">
https://news.rthk.hk/rthk/ch/component/k2/1793434-20250227.htm
</guid>
<pubDate>
Thu, 27 Feb 2025 09:38:00 +0800
</pubDate>
</item>
<item>
<title>
人行逆回購2150億元人民幣
</title>
<link>
https://news.rthk.hk/rthk/ch/component/k2/1793433-20250227.htm
</link>
<description>
<![CDATA[<div>
<img alt="人行進行2150億元7日期逆回購操作,利率維持1.5厘不變。(港台圖片)" src="https://wsrv.nl/?n=-1&we&h=1080&output=webp&trim=1&url=https%3A%2F%2Fnewsstatic.rthk.hk%2Fimages%2Fmfile_1793433_1_20250227093302.jpg&q=55">
<br>
<div class="itemFullText">
人民銀行公開市場進行2150億元人民幣7日期逆回購操作,利率維持1.5厘不變,對沖單日到期量,淨投放900億元,連續兩日淨投放。
</div>
<br>
<hr>
<p>
原始網址 Original URL:
<a href="https://news.rthk.hk/rthk/ch/component/k2/1793433-20250227.htm" rel="nofollow">
https://news.rthk.hk/rthk/ch/component/k2/1793433-20250227.htm
</a>
</p>
<p>
© rthk.hk
</p>
<p>
電子郵件 Email:
<a href="mailto:cnews@rthk.hk" rel="nofollow">
cnews@rthk.hk
</a>
</p>
</div>
]]>
</description>
<guid isPermaLink="true">
https://news.rthk.hk/rthk/ch/component/k2/1793433-20250227.htm
</guid>
<pubDate>
Thu, 27 Feb 2025 09:33:00 +0800
</pubDate>
</item>
<item>
<title>
恒指競價時段跌4點
</title>
<link>
https://news.rthk.hk/rthk/ch/component/k2/1793432-20250227.htm
</link>
<description>
<![CDATA[<div>
<img alt="恒指競價時段報23783點,跌4點。(港台圖片)" src="https://wsrv.nl/?n=-1&we&h=1080&output=webp&trim=1&url=https%3A%2F%2Fnewsstatic.rthk.hk%2Fimages%2Fmfile_1793432_1_20250227092621.jpg&q=20">
<br>
<div class="itemFullText">
恒指窄幅低開,競價時段報23783點,跌4點。
<br>
<br>
科技指數報5963點,升10點,升幅0.17%。
<br>
<br>
中國銀河及中金分別低開約6%及7%。對於市傳中金公司和中國銀河合併,兩家公司表示,未有收到任何有關傳聞的書面或口頭信息。
</div>
<br>
<hr>
<p>
原始網址 Original URL:
<a href="https://news.rthk.hk/rthk/ch/component/k2/1793432-20250227.htm" rel="nofollow">
https://news.rthk.hk/rthk/ch/component/k2/1793432-20250227.htm
</a>
</p>
<p>
© rthk.hk
</p>
<p>
電子郵件 Email:
<a href="mailto:cnews@rthk.hk" rel="nofollow">
cnews@rthk.hk
</a>
</p>
</div>
]]>
</description>
<guid isPermaLink="true">
https://news.rthk.hk/rthk/ch/component/k2/1793432-20250227.htm
</guid>
<pubDate>
Thu, 27 Feb 2025 09:28:00 +0800
</pubDate>
</item>
<item>
<title>
人民幣兌美元中間價跌8點子
</title>
<link>
https://news.rthk.hk/rthk/ch/component/k2/1793431-20250227.htm
</link>
<description>
<![CDATA[<div>
<img alt="人民幣中間價報7.174兌1美元,較上日中間價下調8點子。(港台圖片)" src="https://wsrv.nl/?n=-1&we&h=1080&output=webp&trim=1&url=https%3A%2F%2Fnewsstatic.rthk.hk%2Fimages%2Fmfile_1793431_1_20250227091901.jpg&q=70">
<br>
<div class="itemFullText">
人民幣中間價報7.174兌1美元,較上日中間價下調8點子。
</div>
<br>
<hr>
<p>
原始網址 Original URL:
<a href="https://news.rthk.hk/rthk/ch/component/k2/1793431-20250227.htm" rel="nofollow">
https://news.rthk.hk/rthk/ch/component/k2/1793431-20250227.htm
</a>
</p>
<p>
© rthk.hk
</p>
<p>
電子郵件 Email:
<a href="mailto:cnews@rthk.hk" rel="nofollow">
cnews@rthk.hk
</a>
</p>
</div>
]]>
</description>
<guid isPermaLink="true">
https://news.rthk.hk/rthk/ch/component/k2/1793431-20250227.htm
</guid>
<pubDate>
Thu, 27 Feb 2025 09:19:00 +0800
</pubDate>
</item>
<item>
<title>
受元朗公路交通意外影響 九巴及龍運途經路線班次或延誤
</title>
<link>
https://news.rthk.hk/rthk/ch/component/k2/1793430-20250227.htm
</link>
<description>
<![CDATA[<div>
<img alt="九巴稱。途經現場的巴士路線班次或會有所延誤,部分將臨時改道行駛。(港台圖片)" src="https://wsrv.nl/?n=-1&we&h=1080&output=webp&trim=1&url=https%3A%2F%2Fnewsstatic.rthk.hk%2Fimages%2Fmfile_1793430_1_20250227100732.jpg&q=80">
<br>
<div class="itemFullText">
九巴表示,受元朗公路近十八鄉交匯處交通意外影響,附近一帶交通嚴重擠塞,九巴及龍運途經該處的巴士路線班次或會有所延誤,部分路線將臨時改道行駛。
<br>
<br>
乘客可致電九巴顧客服務熱線2745 4466、龍運顧客服務熱線2261 2791,或使用九巴及龍運網頁www.kmb.hk及智能手機應用程式App1933查詢詳情。
</div>
<br>
<hr>
<p>
原始網址 Original URL:
<a href="https://news.rthk.hk/rthk/ch/component/k2/1793430-20250227.htm" rel="nofollow">
https://news.rthk.hk/rthk/ch/component/k2/1793430-20250227.htm
</a>
</p>
<p>
© rthk.hk
</p>
<p>
電子郵件 Email:
<a href="mailto:cnews@rthk.hk" rel="nofollow">
cnews@rthk.hk
</a>
</p>
</div>
]]>
</description>
<guid isPermaLink="true">
https://news.rthk.hk/rthk/ch/component/k2/1793430-20250227.htm
</guid>
<pubDate>
Thu, 27 Feb 2025 09:15:00 +0800
</pubDate>
</item>
<item>
<title>
台股初段靠穩
</title>
<link>
https://news.rthk.hk/rthk/ch/component/k2/1793428-20250227.htm
</link>
<description>
<![CDATA[<div>
<img alt="台灣加權指數較早時報23480點,升78點,升幅0.33%。(港台圖片)" src="https://wsrv.nl/?n=-1&we&h=1080&output=webp&trim=1&url=https%3A%2F%2Fnewsstatic.rthk.hk%2Fimages%2Fmfile_1793428_1_20250227090705.jpg&q=85">
<br>
<div class="itemFullText">
台股初段靠穩。
<br>
<br>
加權指數較早時報23480點,升78點,升幅0.33%。
</div>
<br>
<hr>
<p>
原始網址 Original URL:
<a href="https://news.rthk.hk/rthk/ch/component/k2/1793428-20250227.htm" rel="nofollow">
https://news.rthk.hk/rthk/ch/component/k2/1793428-20250227.htm
</a>
</p>
<p>
© rthk.hk
</p>
<p>
電子郵件 Email:
<a href="mailto:cnews@rthk.hk" rel="nofollow">
cnews@rthk.hk
</a>
</p>
</div>
]]>
</description>
<guid isPermaLink="true">
https://news.rthk.hk/rthk/ch/component/k2/1793428-20250227.htm
</guid>
<pubDate>
Thu, 27 Feb 2025 09:09:00 +0800
</pubDate>
</item>
<item>
<title>
財政預算案2025|陳茂波稱公務員凍薪是考慮連續兩年經濟增長
</title>
<link>
https://news.rthk.hk/rthk/ch/component/k2/1793429-20250227.htm
</link>
<description>
<![CDATA[<div>
<img alt="" src="https://wsrv.nl/?n=-1&we&h=1080&output=webp&trim=1&url=https%3A%2F%2Fnewsstatic.rthk.hk%2Fimages%2Fmfile_1793429_1_20250227094132.jpg&q=60">
<br>
<div class="itemFullText">
財政預算案提出,2025/26年度行政、立法、司法機關等全體人員凍薪。財政司司長陳茂波出席電台聯播節目,有在非政府機構工作的市民致電,指機構可能跟隨政府凍薪,因而減少消費,詢問陳茂波會否呼籲其他機構不要跟隨凍薪。陳茂波回應說,聽到社會有強烈聲音,要求公務員及問責官員的薪酬作出相應處理,經考慮後決定凍薪,而所有經公帑發放薪酬的機構亦一致,希望大家理解。
<br>
<br>
有63歲的市民致電表示,認同二元乘車優惠計劃可以微調,但反問為何公務員凍薪而增薪點制度不變,是否變相只是「止蝕」而長者要付出多些。陳茂波說,公務員凍薪是考慮連續兩年有經濟增長,私人市場有加薪,以及採取強化財政整合計劃等因素,而公務員的增薪點涉及每年的工作評核,會考慮工作表現。
<br>
<br>
財政預算案亦提出積極探討規範籃球博彩活動,有聽眾致電節目問何時可以落實。陳茂波說,已邀請馬會提交建議,知道馬會正全速去做,當政府收到建議會即時處理,亦會有諮詢機制,社會可以討論及給予意見,他強調提出規範籃球博彩活動是希望以法律規管不合法賭博。
</div>
<br>
<hr>
<p>
原始網址 Original URL:
<a href="https://news.rthk.hk/rthk/ch/component/k2/1793429-20250227.htm" rel="nofollow">
https://news.rthk.hk/rthk/ch/component/k2/1793429-20250227.htm
</a>
</p>
<p>
© rthk.hk
</p>
<p>
電子郵件 Email:
<a href="mailto:cnews@rthk.hk" rel="nofollow">
cnews@rthk.hk
</a>
</p>
</div>
]]>
</description>
<guid isPermaLink="true">
https://news.rthk.hk/rthk/ch/component/k2/1793429-20250227.htm
</guid>
<pubDate>
Thu, 27 Feb 2025 09:09:00 +0800
</pubDate>
</item>
<item>
<title>
財政預算案2025|陳茂波稱節約開支需取消學生津貼
</title>
<link>
https://news.rthk.hk/rthk/ch/component/k2/1793426-20250227.htm
</link>
<description>
<![CDATA[<div>
<img alt="" src="https://wsrv.nl/?n=-1&we&h=1080&output=webp&trim=1&url=https%3A%2F%2Fnewsstatic.rthk.hk%2Fimages%2Fmfile_1793426_1_20250227100555.jpg&q=70">
<br>
<div class="itemFullText">
預算案公布將將取消為中小學和幼稚園學生提供2500元學生津貼。有聽衆致電司長熱線電台聯播節目,表示做法有違政府鼓勵生育,綜援、生果金等出半糧,中產則沒有受惠。
<br>
<br>
財政司司長陳茂波回應表示,2500元學生津貼不需要任何資產審查,如果要節約開支,這是需要減縮的地方,有需要的人士在其他計劃可獲得照顧。
<br>
<br>
他指出,當局有不同措施鼓勵市民生育,經濟一直復蘇,不同人有不同壓力,以往有不同支援措施,環境好時力度比較大,目前有赤字,因此在力所能及的範圍內表示關心。
<br>
<br>
另外,有聽衆提出開徵陸路離境稅,陳茂波說,如果增加有關費用,影響面比較大,在機場收取有關費用,對飛機乘客只增加數十元,相對機票來說,是可以負擔得到。
</div>
<br>
<hr>
<p>
原始網址 Original URL:
<a href="https://news.rthk.hk/rthk/ch/component/k2/1793426-20250227.htm" rel="nofollow">
https://news.rthk.hk/rthk/ch/component/k2/1793426-20250227.htm
</a>
</p>
<p>
© rthk.hk
</p>
<p>
電子郵件 Email:
<a href="mailto:cnews@rthk.hk" rel="nofollow">
cnews@rthk.hk
</a>
</p>
</div>
]]>