昼白 发表于 2026-5-19 07:00:06

每天60秒读懂世界2026年/05月/19日

<style>
.chlt-article {
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: inherit;
    letter-spacing: .5px;
    padding-top: 10px;
    overflow-wrap: anywhere;
}
.chlt-article * {
    box-sizing: border-box;
}
.chlt-pulse {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: #38bdf8;
    margin-right: 12px;
    box-shadow: 0 0 0 0 rgba(56, 189, 248, .4);
    animation: chlt-breath 2.5s cubic-bezier(.4, 0, .6, 1) infinite;
}
@keyframes chlt-breath {
    0% { box-shadow: 0 0 0 0 rgba(56, 189, 248, .4); }
    70% { box-shadow: 0 0 0 6px rgba(56, 189, 248, 0); }
    100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}
.chlt-h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
}
.chlt-h2.mt {
    margin-top: 40px;
}
.chlt-h2:before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2338bdf8"><path d="M21 12l-18 12V0z"/></svg>') no-repeat center;
    margin-right: 8px;
}
.chlt-news-list {
    counter-reset: news-counter;
    list-style: none;
    margin: 0;
    padding: 0;
}
.chlt-news-item {
    position: relative;
    padding: 0 0 14px 38px;
    margin-bottom: 14px;
    text-align: justify;
    border-bottom: 1px dashed rgba(150, 150, 150, .2);
    transition: transform .2s ease;
}
.chlt-news-item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.chlt-news-item:hover {
    transform: translateX(4px);
}
.chlt-news-item:before {
    counter-increment: news-counter;
    content: counter(news-counter, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    background: rgba(150, 150, 150, .35);
    padding: 2px 5px;
    border-radius: 4px;
    line-height: 1.2;
    font-family: Consolas, Monaco, monospace;
    transition: background .3s ease, box-shadow .3s ease;
}
.chlt-news-item:hover:before {
    background: #38bdf8;
    box-shadow: 0 2px 6px rgba(56, 189, 248, .3);
}
.chlt-widget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
    margin-bottom: 14px;
}
.chlt-card {
    background: rgba(150, 150, 150, .03);
    border: 1px solid rgba(150, 150, 150, .1);
    border-radius: 12px;
    padding: 22px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
}
.chlt-card.compact {
    padding: 14px 16px;
    border-radius: 10px;
}
.chlt-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .03);
    border-color: rgba(56, 189, 248, .3);
    background: rgba(150, 150, 150, .05);
}
.chlt-card-title {
    font-size: 13px;
    color: #38bdf8;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.chlt-card.compact .chlt-card-title {
    font-size: 12px;
    margin-bottom: 9px;
}
.chlt-card-title svg {
    flex: 0 0 auto;
}
.chlt-weather-main {
    display: flex;
    align-items: baseline;
    gap: 9px;
    margin-bottom: 8px;
}
.chlt-temp-num {
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}
.chlt-weather-desc {
    font-size: 14px;
    opacity: .8;
    font-weight: 500;
}
.chlt-weather-sub {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    font-size: 12px;
    opacity: .68;
}
.chlt-rate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
}
.chlt-rate-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
}
.chlt-rate-cur {
    font-size: 11px;
    opacity: .55;
}
.chlt-rate-val {
    font-size: 14px;
    font-weight: 700;
    font-family: Consolas, Monaco, monospace;
    color: #38bdf8;
    white-space: nowrap;
}
.chlt-almanac {
    margin-bottom: 25px;
}
.chlt-alm-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    font-size: 13px;
    opacity: .7;
    margin-bottom: 18px;
    align-items: center;
}
.chlt-alm-divider {
    width: 3px;
    height: 3px;
    background: currentColor;
    border-radius: 50%;
    opacity: .3;
}
.chlt-alm-highlight {
    color: #38bdf8;
    font-weight: 700;
    opacity: 1;
}
.chlt-alm-yiji {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 18px;
}
.chlt-yiji-box {
    display: flex;
    align-items: flex-start;
    background: rgba(150, 150, 150, .04);
    border-radius: 10px;
    padding: 14px;
    border: 1px solid rgba(150, 150, 150, .05);
}
.chlt-yiji-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    margin-right: 14px;
    flex-shrink: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .2);
}
.chlt-yiji-icon.yi {
    background: linear-gradient(135deg, #34d399, #059669);
    box-shadow: 0 3px 10px rgba(16, 185, 129, .25);
}
.chlt-yiji-icon.ji {
    background: linear-gradient(135deg, #f87171, #dc2626);
    box-shadow: 0 3px 10px rgba(239, 68, 68, .25);
}
.chlt-yiji-text {
    font-size: 14.5px;
    line-height: 1.7;
    opacity: .9;
    word-spacing: 5px;
}
.chlt-alm-extra {
    border-top: 1px dashed rgba(150, 150, 150, .15);
    padding-top: 14px;
    font-size: 12px;
    opacity: .65;
    line-height: 1.8;
}
.chlt-alm-extra .label {
    font-weight: 700;
    opacity: .9;
    margin-right: 4px;
}
.chlt-alm-extra .sep {
    margin: 0 10px;
    opacity: .2;
}
.chlt-error {
    opacity: .62;
    font-size: 13px;
}
.chlt-history {
    border-left: 2px solid rgba(150, 150, 150, .15);
    margin-left: 6px;
    padding-left: 22px;
}
.chlt-history-item {
    position: relative;
    margin-bottom: 14px;
    opacity: .9;
}
.chlt-history-item:last-child {
    margin-bottom: 0;
}
.chlt-history-item:before {
    content: "";
    position: absolute;
    left: -27px;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #38bdf8;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, .15);
    transition: background .3s;
}
.chlt-history-item:hover:before {
    background: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, .25);
}
.chlt-year {
    font-weight: 700;
    color: #38bdf8;
    margin-right: 12px;
    font-family: Consolas, Monaco, monospace;
    font-size: 15px;
}
.chlt-quote {
    margin-top: 50px;
    padding: 30px 20px 10px;
    border-top: 1px solid rgba(150, 150, 150, .1);
    text-align: center;
    font-style: italic;
    opacity: .6;
    position: relative;
}
.chlt-quote:before {
    content: "❝";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    color: rgba(150, 150, 150, .2);
}
@media (max-width: 640px) {
    .chlt-article {
      font-size: 15px;
      line-height: 1.9;
      letter-spacing: 0;
    }
    .chlt-widget-grid,
    .chlt-alm-yiji {
      grid-template-columns: 1fr;
    }
    .chlt-news-item {
      padding-left: 36px;
    }
    .chlt-card {
      padding: 18px;
    }
    .chlt-card.compact {
      padding: 13px 14px;
    }
    .chlt-temp-num {
      font-size: 26px;
    }
}
</style>
<div class="chlt-article">
    <div class="chlt-h2">
      <div class="chlt-pulse"></div>
      <span>今日焦点</span>
    </div>
    <ol class="chlt-news-list">
<li class="chlt-news-item">4 月 70 城房价出炉:一线城市新房、二手房价格环比均呈上涨态势,上海新房二手房环比涨幅均领跑全国</li>
<li class="chlt-news-item">19 日起铁路部门在京张高铁试点推出 “自行车随身行” 服务: 88 元 1 辆,需拆卸前轮并包装</li>
<li class="chlt-news-item">我国逐日工程研究取得重大进展:在百米级距离实现千瓦功率输出,为太空筑起无线充电站奠定基础</li>
<li class="chlt-news-item">抗衰老最佳睡眠时长出炉:女性约为 6.5 至 7.8 小时,男性约为 6.4 至 7.7 小时,该研究基于近 50 万人的数据</li>
<li class="chlt-news-item">腾讯音乐宣布完成收购喜马拉雅,对价含 12.6 亿美元及 1.75 亿 A 类普通股,在线音频行业迎里程碑式整合</li>
<li class="chlt-news-item">A 股再现新 “股王”:联讯仪器上市 14 个交易日涨超 15 倍,总市值近 1400 亿元超越贵州茅台</li>
<li class="chlt-news-item">上海交大一学生用 AI 伪造收据,私吞竞赛奖金,校方通报:取消其校内转专业拟录取资格</li>
<li class="chlt-news-item">国家反诈中心 app 上线 AI 内容鉴定功能:可辨图像、视频、文本等内容,综合准确率 95% 以上</li>
<li class="chlt-news-item">中国大模型周调用量连续三周超越美国,稳居全球首位;美国人机包裹分拣对决,直播 10 小时最终人类险胜机器人</li>
<li class="chlt-news-item">美媒:美国因美伊冲突导致燃油成本额外支出已达 415 亿美元,相当于每个美国家庭额外承担约 316 美元燃油成本</li>
<li class="chlt-news-item">韩媒:日本首相 19 日至 20 日访韩,韩国将以准国宾规格接待;三星电子最后谈判开启,韩国法院要求罢工行动不得影响产量</li>
<li class="chlt-news-item">英媒:斯塔默最新表示首相任期并未结束不会辞职,仍计划参加下次英国大选</li>
<li class="chlt-news-item">外媒:世界体操联合会恢复俄罗斯运动员参赛资格,批准他们比赛时使用俄罗斯国旗和演奏俄罗斯国歌</li>
<li class="chlt-news-item">美媒:美披露古巴军方已获得 300 多架军用无人机,并讨论袭击美国本土,古巴回应:美国在制造侵略借口</li>
<li class="chlt-news-item">外媒:以色列军队拦截新一支试图驶往加沙的 “全球坚韧船队”,该船队试图突破海上封锁,向加沙民众运送人道主义援助物资</li>
</ol>

    <div class="chlt-h2 mt">日常参考</div>
    <div class="chlt-widget-grid">
      <div class="chlt-card compact"><div class="chlt-card-title"><svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path><circle cx="12" cy="10" r="3"></circle></svg><span>北京天气</span></div><div class="chlt-weather-main"><span class="chlt-temp-num">19℃</span><span class="chlt-weather-desc">雾</span></div><div class="chlt-weather-sub"><span>湿度 86%</span><span>AQI 31 (优)</span><span>西南风4-5</span></div></div>
      <div class="chlt-card compact"><div class="chlt-card-title"><svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="12" y1="1" x2="12" y2="23"></line><path d="M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"></path></svg><span>基准汇率</span></div><div class="chlt-rate-grid">
<div class="chlt-rate-item"><span class="chlt-rate-cur">1 USD</span><span class="chlt-rate-val">6.818</span></div>
<div class="chlt-rate-item"><span class="chlt-rate-cur">1 EUR</span><span class="chlt-rate-val">7.9219</span></div>
<div class="chlt-rate-item"><span class="chlt-rate-cur">1 GBP</span><span class="chlt-rate-val">9.0825</span></div>
<div class="chlt-rate-item"><span class="chlt-rate-cur">100 JPY</span><span class="chlt-rate-val">4.293</span></div>
</div></div>
    </div>

    <div class="chlt-card chlt-almanac"><div class="chlt-card-title"><svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg><span>今日黄历</span></div><div class="chlt-alm-meta"><span>2026-05-19 星期二</span><div class="chlt-alm-divider"></div><span>马 · 农历丙午年四月初三</span><div class="chlt-alm-divider"></div><span class="chlt-alm-highlight">金牛座</span><div class="chlt-alm-divider"></div><span>立夏 第15天</span><div class="chlt-alm-divider"></div><span>五行:天河水 / 长流水 / 长流水</span></div><div class="chlt-alm-yiji"><div class="chlt-yiji-box"><div class="chlt-yiji-icon yi">宜</div><div class="chlt-yiji-text">塞穴 断蚁 结网 畋猎 馀事勿取</div></div><div class="chlt-yiji-box"><div class="chlt-yiji-icon ji">忌</div><div class="chlt-yiji-text">嫁娶 安葬 入宅 出行 动土 词讼</div></div></div><div class="chlt-alm-extra"><div><span class="label">干支:</span>丙午年 / 癸巳月 / 癸巳日</div><div><span class="label">当前时辰:</span>辰时 · 宜 嫁娶 出行 交易 开市 安床 作灶 求嗣 求财 · 忌 祈福 盖屋 祭祀 入殓 酬神 上梁 斋醮</div><div><span class="label">简运:</span>今日运势:今日感情运势不错,单身者有桃花 · 事业:适合团队合作,发挥所长 · 财运:正财运佳,工资奖金丰厚 · 感情:桃花运旺,单身者有缘分</div></div></div>

    <div class="chlt-h2 mt">历史上的今天</div>
    <div class="chlt-history">
<div class="chlt-history-item"><span class="chlt-year">1125</span>古罗斯政治家弗拉基米尔·莫诺马赫逝世</div>
<div class="chlt-history-item"><span class="chlt-year">1389</span>莫斯科大公德米特里·顿斯科伊逝世</div>
<div class="chlt-history-item"><span class="chlt-year">1536</span>英格兰王后安妮·波林逝世</div>
<div class="chlt-history-item"><span class="chlt-year">1612</span>日本战国时代的大名佐竹义重逝世</div>
<div class="chlt-history-item"><span class="chlt-year">1649</span>英国残余议会宣布废除君主制和上议院</div>
<div class="chlt-history-item"><span class="chlt-year">1762</span>德国哲学家费希特出生</div>
</div>

    <div class="chlt-quote">人生本无绝对输赢,无愧初心尽力而行,便是属于自己最好的结局。</div>
</div>

起风在等你 发表于 2026-5-19 10:20:07

今日已阅

听风喂马 发表于 2026-5-20 08:56:45

知道了,退下吧

1685591610 发表于 2026-5-22 07:08:34

今日已阅

桃气泡泡茶 发表于 6 天前

今日已阅

Yt张起灵 发表于 6 天前

辛苦整理,有心了

xinc 发表于 5 天前

辛苦整理,有心了

温一壶 发表于 5 天前

今日已阅

粤B无数 发表于 4 天前

已阅,晓得了

Cien 发表于 昨天 18:46

今日已阅
页: [1]
查看完整版本: 每天60秒读懂世界2026年/05月/19日