格林尼治标准时间为1970年1月1日0时0分,而北京时间为1970年1月1日8时0分。也就是说,北京时间的时间戳起点为-28800
    now = time.time()
    midnight = now - (now % 86400)
    time.ctime(midnight )
    midnight = now - (now % 86400) + time.timezone
    midnight = now + time.timezone - (now % 86400)
    now + time.timezone 北京时间跑了多少秒