python爬取天天基金中阶段涨幅明细的表格不成功

问题遇到的现象和发生背景

python爬取天天基金中阶段涨幅明细的表格不成功

问题相关代码,请勿粘贴截图

import pandas as pd
import csv
import requests
import re
import time
import datetime
import numpy as np
import json
url = 'http://fundf10.eastmoney.com/jdzf_000991.html'
df = pd.read_html(url,encoding='utf-8')[0]
d2.to_excel('jdzf.xlsx', encoding='utf-8-sig', header=1, index=0)

运行结果及报错内容

运行无报错,但是爬取的表格不是想要的表格

img

我的解答思路和尝试过的方法

使用pd.read_html(url)无法获取网页中的表格

我想爬取网页中的阶段涨幅明细下面的表格存入到EXCEL表中

img