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

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

<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">五预警齐发:广东、湖南、湖北、上海、北京、河北、山东等地有暴雨,广西局地有特大暴雨</li>
<li class="chlt-news-item">邮政局:今年我国快递业务量已超 1000 亿件,比 2025 年达到千亿件提前了 9 天</li>
<li class="chlt-news-item">电子商务法修正草案公开征求意见:进一步明确平台经济各方权利义务</li>
<li class="chlt-news-item">眼镜制配计量新规征求意见:消费者可以按单查验,避开配镜陷阱</li>
<li class="chlt-news-item">阿里达摩院 AI 智能体自主发现 4 种全新超导材料,已获实验验证</li>
<li class="chlt-news-item">豆包、千问将于 7 月 15 日下线智能体功能,后续将无法查看或恢复,建议用户提前备份数据</li>
<li class="chlt-news-item">乘联分会崔东树:1-5 月中国海外市场自主品牌汽车销量 196 万台,同比增长 60%</li>
<li class="chlt-news-item">海南平稳推进 2030 年禁售燃油车,届时新能源车保有量占比将达 45%</li>
<li class="chlt-news-item">360 万元法拉利被 4 名儿童当滑梯玩,导致车身多处划痕,最新进展:4 名家长均已道歉,共计赔偿 2 万元</li>
<li class="chlt-news-item">世界杯 16 强产生:亚洲全军覆没,非洲只剩两队,欧洲 + 南美占据 11 席,美加墨三个东道主全数入围</li>
<li class="chlt-news-item">佛得角打进淘汰赛获 1100 万美元奖金,相当于该国 GDP 的 0.3%</li>
<li class="chlt-news-item">便利店巨头 7-11 起诉耐克,指控其新鞋配色抄袭 7-11 标志性颜色,还计划在 7 月 11 日发售</li>
<li class="chlt-news-item">日本 “首次” 从废旧空调中提取稀土,日网民吐槽:已经到了不得不捡垃圾的地步</li>
<li class="chlt-news-item">特朗普赦免 11 人,称其中 6 人在拜登时期因 “修理他们的汽车” 被起诉</li>
<li class="chlt-news-item">美国独立 250 年国庆日遭高温扰乱:纽约 1.7 万户居民停电,数十场活动叫停或推迟</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">25℃</span><span class="chlt-weather-desc">阴</span></div><div class="chlt-weather-sub"><span>湿度 77%</span><span>AQI 22 (优)</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.7907</span></div>
<div class="chlt-rate-item"><span class="chlt-rate-cur">1 EUR</span><span class="chlt-rate-val">7.7612</span></div>
<div class="chlt-rate-item"><span class="chlt-rate-cur">1 GBP</span><span class="chlt-rate-val">9.0582</span></div>
<div class="chlt-rate-item"><span class="chlt-rate-cur">100 JPY</span><span class="chlt-rate-val">4.2076</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-07-05 星期日</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">1687</span>牛顿发表《自然哲学的数学原理》</div>
<div class="chlt-history-item"><span class="chlt-year">1811</span>委内瑞拉独立</div>
<div class="chlt-history-item"><span class="chlt-year">1826</span>英国政治家莱佛士去世</div>
<div class="chlt-history-item"><span class="chlt-year">1857</span>国际妇女运动领袖克莱拉·蔡特金出生</div>
<div class="chlt-history-item"><span class="chlt-year">1893</span>《辞海》出版的主编舒新城出生</div>
<div class="chlt-history-item"><span class="chlt-year">1911</span>法国总统蓬皮杜诞辰</div>
</div>

    <div class="chlt-quote">别高估一天能做的事,也别低估一年能积累的成果,时间会奖励那些坚持的人</div>
</div>

qq2503338169 发表于 2026-7-6 13:29:11

辛苦整理,有心了

1228076385 发表于 2026-7-6 19:34:31

辛苦整理,有心了

夏目软棉棉 发表于 2026-7-8 19:00:10

已阅,晓得了

dalongmao 发表于 6 天前

已阅,晓得了

北良 发表于 5 天前

已阅,晓得了

Taro 发表于 5 天前

知道了,退下吧

是蛋清i 发表于 3 天前

今日已阅

躺赢公主 发表于 3 天前

今日已阅

咕咕鸡 发表于 3 天前

辛苦整理,有心了
页: [1] 2
查看完整版本: 每天60秒读懂世界2026年/07月/05日