python爬虫爬不到带有超链接的文本字段,需要怎么修改代码?

如下图,“绿色发展”这四个字由于在<p>标签中的a标签下爬不到正文中。网站上原句是 “一带一路”不仅是经济繁荣之路,也是绿色发展之路。
26875611ed018c3ab7fefd3833bd989.png
但是我爬到的就是下图那样,到“也是”就停了,下一句又从“之路”开始,“绿色发展”这四个字就爬不到
227c993fc049f98a77fa57af7c09705.png
查看网页结构如下图
image.png
下面是我的xpath路径:
content = html.xpath('//div[@class="f14 l24 news_content mt25zoom"]/p/text()')

下面是我的全部代码,我需要怎样才能把带有超链接的文本段也爬到呢

import requests
from lxml import etree
import html

#爬取并转化为html格式
base_url="https://www.solidwaste.com.cn/news/342864.html"
resp=requests.get(url=base_url)
html = etree.HTML(resp.text)



#更换编码方式为网页对应的编码
encod = html.xpath('//meta[1]/@content')
if encod != []:
    encod = encod[0].split("=")[1]
    resp.encoding = encod
    html = etree.HTML(resp.text)



#获取网页正文
content = html.xpath('//div[@class="f14 l24 news_content mt25 zoom"]/p/text()')
print(content)

content_deal=""
for i in content:
    da = i.strip() + "\n"
    # print(i.strip() + "\n", end="")
    content_deal += da
print(content_deal)
阅读 1.5k