-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhk_rthk_finance_ch.rss.xml
2912 lines (2857 loc) · 99.3 KB
/
hk_rthk_finance_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/webpageCache/services/loadModNewsShowSp2List.php?lang=zh-TW&cat=5&newsCount=60&dayShiftMode=1&archive_date=
</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/webpageCache/services/loadModNewsShowSp2List.php?lang=zh-TW&cat=5&newsCount=60&dayShiftMode=1&archive_date=
</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>
財政預算案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>
日股半日升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>
恒指升幅擴至逾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/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>
]]>
</description>
<guid isPermaLink="true">
https://news.rthk.hk/rthk/ch/component/k2/1793426-20250227.htm
</guid>
<pubDate>
Thu, 27 Feb 2025 09:02:00 +0800
</pubDate>
</item>
<item>
<title>
《環看天下》:美歐就獲烏克蘭礦產各提協議 分析:美歐嫌隙加深
</title>
<link>
https://news.rthk.hk/rthk/ch/component/k2/1793425-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_1793425_1_20250227084903.jpg&q=90">
<br>
<div class="itemFullText">
美國總統特朗普表示,美國和烏克蘭之間的礦產協議即將達成,據報烏克蘭總統澤連斯基最快星期五,可能前往華盛頓簽署協議。歐盟亦提出有關烏克蘭礦產資源的協議,但否認是要同美國競爭。
<br>
<br>
有分析認為,歐盟同美國近期在處理烏克蘭問題上,分歧明顯進一步加深,不排除雙方近年持續緊密的關係,隨著特朗普第二次入主白宮後,再次受到動搖。
</div>
<br>
<hr>
<p>
原始網址 Original URL:
<a href="https://news.rthk.hk/rthk/ch/component/k2/1793425-20250227.htm" rel="nofollow">
https://news.rthk.hk/rthk/ch/component/k2/1793425-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/1793425-20250227.htm
</guid>
<pubDate>
Thu, 27 Feb 2025 08:49:00 +0800
</pubDate>
</item>
<item>
<title>
財政預算案2025|陳茂波:股市交投量與印花稅無直接推動關係
</title>
<link>
https://news.rthk.hk/rthk/ch/component/k2/1793424-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_1793424_1_20250227100448.jpg&q=50">
<br>
<div class="itemFullText">
財政司司長陳茂波出席電台聯播節目表示,金融市場要搞活股市,再降低股票印花稅不是主要手段。近期交投非常暢旺,印花稅都是維持原本水平。當局內部曾研究,加稅與交投量沒有直接推動高速增加的必然關係,吸引更多好公司上市更重要。
<br>
<br>
預算案宣布,徵收100元印花稅的物業價值上限由300萬元提高至400萬元。陳茂波回應是否要推活樓市時說,目標是協助買細價樓的人士,減輕負擔。買細價樓大概可獲九成按揭,相當能夠協助置業人士,至於是否用政府錢補貼大家支付首期,在目前環境下,未必最合適。
<br>
<br>
陳茂波說,樓市經過一段時間調整,政府有所回應,賣地適當調整,形容市場已經穩住。他說本港沒有高地價政策,即使地價的底價定得高,都不會影響發展商的投標價。過去一年樓價有所調整,但租金有上升,相信有市民如果想買樓,看到樓價有調整,會「睇定啲」才決定,又相信部分租樓人士會買樓。
</div>
<br>
<hr>
<p>
原始網址 Original URL:
<a href="https://news.rthk.hk/rthk/ch/component/k2/1793424-20250227.htm" rel="nofollow">
https://news.rthk.hk/rthk/ch/component/k2/1793424-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/1793424-20250227.htm
</guid>
<pubDate>
Thu, 27 Feb 2025 08:48:00 +0800
</pubDate>
</item>
<item>
<title>
財政預算案2025|陳茂波:調整2元乘車優惠簡單易明容易計數
</title>
<link>
https://news.rthk.hk/rthk/ch/component/k2/1793421-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_1793421_1_20250227093723.jpg&q=85">
<br>
<div class="itemFullText">
預算案公布調整二元乘車優惠計劃,受惠對象不變,新增每月240程限制,10元以上改為全額車費「兩折」。有聽衆致電司長熱線電台聯播節目,問及行程設限原因,有聽衆則表示,應該考慮全部行程兩折優惠。
<br>
<br>
財政司司長陳茂波表示,有關計劃得到社會廣泛認同,幫助長者多點外出走動,形容非常深入民心,因此要維持,同時加入每月240程的限制,以控制未來開支增幅,到2027/28年度全面實施後,可以省錢,認為是比較合適的做法。而10元以下車費維持2元,簡單易明,比較方便,政府計算補貼亦比較容易。
<br>
<br>
至於每月240程有甚麼考慮,陳茂波表示,過去數字顯示使用的人士未必很多,亦要盡可能寬鬆及兼顧需要,因為部分人住得比較遠,60歲仍很年輕,尚在工作,亦有長者要外出探病或照顧孫兒。
</div>
<br>
<hr>
<p>
原始網址 Original URL:
<a href="https://news.rthk.hk/rthk/ch/component/k2/1793421-20250227.htm" rel="nofollow">
https://news.rthk.hk/rthk/ch/component/k2/1793421-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/1793421-20250227.htm
</guid>
<pubDate>
Thu, 27 Feb 2025 08:28:00 +0800
</pubDate>
</item>
<item>
<title>
日股初段靠穩
</title>
<link>
https://news.rthk.hk/rthk/ch/component/k2/1793418-20250227.htm
</link>
<description>
<![CDATA[<div>
<img alt="日經指數較早時報38168點,升25點。(日本交易所JPX圖片)" src="https://wsrv.nl/?n=-1&we&h=1080&output=webp&trim=1&url=https%3A%2F%2Fnewsstatic.rthk.hk%2Fimages%2Fmfile_1793418_1_20250227081544.jpg&q=40">
<br>
<div class="itemFullText">
東京股市初段靠穩。
<br>
<br>
日經指數較早時報38168點,升25點。
</div>
<br>
<hr>
<p>
原始網址 Original URL:
<a href="https://news.rthk.hk/rthk/ch/component/k2/1793418-20250227.htm" rel="nofollow">
https://news.rthk.hk/rthk/ch/component/k2/1793418-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/1793418-20250227.htm
</guid>
<pubDate>
Thu, 27 Feb 2025 08:19:00 +0800
</pubDate>
</item>
<item>
<title>
韓股初段跌約0.5%
</title>
<link>
https://news.rthk.hk/rthk/ch/component/k2/1793420-20250227.htm
</link>
<description>
<![CDATA[<div>
<img alt="首爾綜合指數較早時報2628點,跌12點,跌幅0.47%。(KRX圖片)" src="https://wsrv.nl/?n=-1&we&h=1080&output=webp&trim=1&url=https%3A%2F%2Fnewsstatic.rthk.hk%2Fimages%2Fmfile_1793420_1_20250227081729.jpg&q=90">
<br>
<div class="itemFullText">
南韓股市初段下跌。
<br>
<br>
首爾綜合指數較早時報2628點,跌12點,跌幅0.47%。
</div>
<br>
<hr>
<p>
原始網址 Original URL:
<a href="https://news.rthk.hk/rthk/ch/component/k2/1793420-20250227.htm" rel="nofollow">
https://news.rthk.hk/rthk/ch/component/k2/1793420-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/1793420-20250227.htm
</guid>
<pubDate>
Thu, 27 Feb 2025 08:19:00 +0800
</pubDate>
</item>
<item>