/* =========================================================
   theme-light.css — 百望風 浅色玻璃态皮肤
   适用：tianqi 全站（栏目/列表/内容/搜索/公共头部模板）
   说明：HTML 结构与原站保持一致，仅替换配色为浅色玻璃风。
   加载顺序：需在 common.css / province.css 之后引入。
   ========================================================= */

/* 1. 全局重置（更浅的灰白色底，弱化蓝色） */
html, body {
    background-color: #f7f9fc !important;
    background-image:
        radial-gradient(circle at 50% -10%, rgba(43,125,233,0.07) 0%, transparent 55%),
        linear-gradient(160deg, #ffffff 0%, #f3f6fa 100%) !important;
    background-attachment: fixed;
    color: #1f2d3d !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100vh !important;
    font-family: "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* 原 CMS 容器去底色，露出浅色背景 */
.wrapper, .container, .inner, .box, .bd, .c-bd, .mod-list, .mod-map, .mod-city, .mod-link {
    background-color: transparent !important;
    background: transparent !important;
}

/* 浅色柔光背景（更淡，避免大面积蓝色） */
body::before {
    content: "";
    position: fixed;
    top: -30%; left: -30%; width: 160%; height: 160%;
    background:
        radial-gradient(circle at 18% 22%, rgba(43,125,233,0.05) 0%, transparent 40%),
        radial-gradient(circle at 82% 78%, rgba(74,158,255,0.04) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}

/* 2. 粘性布局 */
.page-wrapper, .app-container, .wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.main-content {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}
.app-container > .footer,
.wrapper > .footer {
    margin-top: auto;
}

/* 3. 头部导航 */
.mod-head {
    background: rgba(255, 255, 255, 0.72) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    padding: 15px 25px;
    margin-bottom: 24px;
    box-shadow: 0 8px 30px rgba(31,77,120,0.08);
}
.mod-head .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.mod-head .logo img {
    height: 45px;
    width: auto;
    display: block;
}
.mod-head .search form {
    display: flex;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(43,125,233,0.25);
    border-radius: 50px;
    padding: 4px;
    width: 100%;
    max-width: 400px;
    transition: all 0.3s ease;
}
.mod-head .search form:focus-within {
    border-color: #2b7de9;
    box-shadow: 0 0 0 3px rgba(43,125,233,0.15);
}
.mod-head .search .input-text {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #1f2d3d;
    padding: 8px 15px;
    font-size: 0.9rem;
}
.mod-head .search .input-text::placeholder { color: #9aa7b5; }
.mod-head .search button {
    background: linear-gradient(135deg, #2b7de9, #4a9eff);
    border: none;
    border-radius: 50px;
    color: #fff;
    padding: 8px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.mod-head .search button:hover { transform: scale(1.04); box-shadow: 0 6px 18px rgba(43,125,233,0.35); }

/* 4. 面包屑与标题 */
.tech-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.92) !important;
    border: 1px solid rgba(43,125,233,0.08);
    border-radius: 14px;
    margin-bottom: 16px;
    font-size: 0.88rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 18px rgba(31,77,120,0.06);
}
.tech-breadcrumb a {
    color: #5b6b7c;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.tech-breadcrumb a:hover { color: #2b7de9; }
.tech-breadcrumb a::after {
    content: ">";
    margin: 0 10px;
    color: #c5cdd6;
    font-size: 0.75rem;
}
.tech-breadcrumb span { display: none; }
.tech-breadcrumb strong {
    color: #2b7de9;
    font-weight: 600;
}

.module-hd {
    text-align: center;
    margin-bottom: 30px;
    padding: 35px 25px;
    background: rgba(255, 255, 255, 0.92) !important;
    border: 1px solid rgba(43,125,233,0.08);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(31,77,120,0.08);
}
.module-hd h1 {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2d3d;
    letter-spacing: -0.5px;
}
.module-hd h1 .highlight {
    background: linear-gradient(90deg, #2b7de9, #4a9eff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.module-hd p {
    color: #6b7b8d;
    font-size: 0.95rem;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* 5. 科技列表卡片 / 列表盒子 */
.tech-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}
.tech-card {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 30px rgba(31,77,120,0.06);
}
.tech-card:hover {
    border-color: rgba(43,125,233,0.35);
    box-shadow: 0 16px 44px rgba(43,125,233,0.15);
    transform: translateY(-4px);
}
.tech-card-hd {
    padding: 18px 22px;
    border-bottom: 1px solid rgba(43,125,233,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(43,125,233,0.05) 0%, rgba(74,158,255,0.02) 100%);
}
.tech-card-hd .region-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1f2d3d;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}
.tech-card-hd .region-name:hover { color: #2b7de9; }
.tech-card-hd .region-name i { color: #ff4d6d; font-size: 0.9rem; }
.tech-card-hd .weather-summary {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}
.tech-card-hd .weather-icons img {
    width: 26px; height: 26px;
}
.tech-card-hd .weather-desc {
    font-size: 0.85rem;
    color: #2b7de9;
    font-weight: 500;
}
.tech-card-hd .weather-temp {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2d3d;
}
.tech-card-hd .weather-temp span { color: #9aa7b5; font-size: 0.8rem; font-weight: 400; }
/* 兜底：无天气数据时（图标 src 为 /static/images/d.png）隐藏整个天气摘要，避免破碎图标 */
.tech-card-hd .weather-summary:has(.weather-icons img[src="/static/images/d.png"]) {
    display: none !important;
}
.tech-card-hd .weather-icons img[src="/static/images/d.png"] {
    display: none !important;
}
.tech-card-hd .weather-desc:empty {
    display: none !important;
}
.tech-card-bd {
    padding: 15px 20px 20px;
    flex: 1;
}
.tech-card-bd ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0;
    padding: 0;
}
.tech-card-bd li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    background: rgba(43,125,233,0.04);
    border: 1px solid transparent;
    border-radius: 8px;
    color: #5b6b7c;
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.2s ease;
}
.tech-card-bd li a:hover {
    background: rgba(43,125,233,0.10);
    border-color: rgba(43,125,233,0.35);
    color: #1f2d3d;
    padding-left: 16px;
}
.tech-card-bd li a::after {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.65rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.2s ease;
    color: #2b7de9;
}
.tech-card-bd li a:hover::after { opacity: 1; transform: translateX(0); }

/* 列表盒子（listtemp） */
.list-box-container {
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(31,77,120,0.10);
}
.list-box-hd {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(43,125,233,0.12);
    background: rgba(43,125,233,0.05);
}
.list-box-hd .title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2d3d;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}
.list-box-hd .title:hover { color: #2b7de9; }
.list-box-hd .title::before {
    content: "\f041";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ff4d6d;
}
.list-box-bd { padding: 20px 24px; }
.list-box-bd ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
}
.list-box-bd li { margin: 0; }
.list-box-bd li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: rgba(43,125,233,0.04);
    border: 1px solid rgba(43,125,233,0.10);
    border-radius: 10px;
    color: #1f2d3d;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}
.list-box-bd li a:hover {
    background: rgba(43,125,233,0.10);
    border-color: rgba(43,125,233,0.45);
    color: #1a5fc4;
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(43,125,233,0.15);
}
.list-box-bd li a::after {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.75rem;
    color: #2b7de9;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.25s ease;
}
.list-box-bd li a:hover::after { opacity: 1; transform: translateX(0); }

/* 分页 */
.page-nav { margin-top: 30px; text-align: center; }
.page-nav a, .page-nav span {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 5px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(43,125,233,0.18);
    border-radius: 8px;
    color: #5b6b7c;
    text-decoration: none;
    transition: all 0.3s;
}
.page-nav a:hover, .page-nav span.current {
    background: rgba(43,125,233,0.12);
    border-color: #2b7de9;
    color: #1a5fc4;
}

/* 6. 底部 Footer（浅色、透明融入、强制文档流沉底） */
.footer, .mod-foot {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    background: transparent !important;
    border-top: 1px solid rgba(43,125,233,0.08) !important;
    margin-top: auto;
    padding: 40px 20px 50px;
    text-align: center;
    color: #6b7b8d !important;
    font-size: 0.85rem;
    clear: both;
    width: 100%;
    box-sizing: border-box;
}
.footer a { color: #6b7b8d !important; text-decoration: none; transition: color 0.3s; }
.footer a:hover { color: #2b7de9 !important; }
.footer .bd { display: flex; flex-direction: column; gap: 14px; align-items: center; }
.footer .site-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 16px;
    margin: 0;
    font-weight: 500;
}
.footer .disclaimer {
    max-width: 900px;
    margin: 0 auto;
    color: #9aa7b5;
    font-size: 0.78rem;
    line-height: 1.8;
    text-align: center;
}

/* 返回顶部按钮 */
.mod-fixedbar {
    position: fixed;
    right: 24px;
    bottom: 30px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(43,125,233,0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(31,77,120,0.12);
}
.mod-fixedbar.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mod-fixedbar a {
    color: #2b7de9;
    text-decoration: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}
.mod-fixedbar:hover {
    background: rgba(43,125,233,0.12);
    border-color: #2b7de9;
    box-shadow: 0 6px 24px rgba(43,125,233,0.25);
    transform: translateY(-4px);
}
.mod-fixedbar:hover a { color: #1a5fc4; }

/* 兼容性隐藏元素 */
.mod-mask, .hide { display: none !important; }

/* 7. 搜索结果表（searchtemp） */
.search-hero {
    text-align: center;
    padding: 50px 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 8px 30px rgba(31,77,120,0.08);
}
.search-hero h1 { font-size: 1.8rem; color: #1f2d3d; margin: 0 0 10px; }
.search-hero h1 .highlight { background: linear-gradient(90deg, #2b7de9, #4a9eff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.table-inner table { width: 100%; border-collapse: separate; border-spacing: 0 12px; }
.table-inner tr {
    background: rgba(255,255,255,0.72);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 18px rgba(31,77,120,0.06);
}
.table-inner tr:hover {
    background: rgba(43,125,233,0.08);
    transform: translateX(5px);
    box-shadow: -5px 0 15px rgba(43,125,233,0.12);
}
.table-inner td {
    padding: 18px 20px; text-align: left; color: #1f2d3d; font-size: 0.95rem;
    border-top: 1px solid rgba(43,125,233,0.08);
    border-bottom: 1px solid rgba(43,125,233,0.08);
    vertical-align: middle;
}
.table-inner td:first-child { border-left: 1px solid rgba(43,125,233,0.08); border-radius: 12px 0 0 12px; }
.table-inner td:last-child { border-right: 1px solid rgba(43,125,233,0.08); border-radius: 0 12px 12px 0; }
.table-inner td a {
    color: #1a5fc4; text-decoration: none; font-weight: 500; font-size: 1.05rem;
    display: inline-flex; align-items: center; gap: 10px;
    transition: color 0.3s;
}
.table-inner td a:hover { color: #2b7de9; }
.table-inner td a::before {
    content: "\f3c5";
    font-family: "Font Awesome 6 Free"; font-weight: 900;
    color: #ff4d6d; font-size: 0.9rem;
}
.no-results { text-align: center; padding: 60px 20px; color: #5b6b7c; font-size: 1.1rem; }
.no-results i { font-size: 3rem; margin-bottom: 20px; color: #2b7de9; opacity: 0.5; display: block; }

/* 历史查询表单 */
form[action="/history/"] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(43,125,233,0.10);
    border-radius: 14px;
    margin-bottom: 20px;
}
form[action="/history/"] .input-text {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(43,125,233,0.18);
    border-radius: 10px;
    padding: 9px 14px;
    color: #1f2d3d;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}
form[action="/history/"] .input-text:focus {
    border-color: #2b7de9;
    box-shadow: 0 0 0 3px rgba(43,125,233,0.12);
}
form[action="/history/"] .input-button {
    background: linear-gradient(135deg, #2b7de9, #4a9eff);
    border: none;
    border-radius: 10px;
    color: #fff;
    padding: 9px 22px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
form[action="/history/"] .input-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(43,125,233,0.35);
}
form[action="/history/"] span { color: #5b6b7c; font-size: 0.9rem; }
form[action="/history/"] .link a {
    color: #2b7de9;
    text-decoration: none;
    margin-left: 10px;
    font-size: 0.9rem;
}
form[action="/history/"] .link a:hover { text-decoration: underline; }

/* 8. 内容/详情页（newstemp）天气要素 */

/* 8.1 当地时间卡片 */
.time-card {
    background: rgba(255,255,255,0.74);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(43,125,233,0.12);
    border-radius: 22px;
    padding: 22px 28px;
    margin-bottom: 22px;
    box-shadow: 0 8px 24px rgba(31,45,61,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.time-card .time-left h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1f2d3d;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.time-card .time-left h3 i { color: #2b7de9; }
.time-card .time-left p {
    margin: 4px 0;
    color: #5b6b7c;
    font-size: 0.95rem;
}
.time-card #timezone { color: #5b6b7c !important; }
.time-card .time-right { text-align: right; }
.time-card .time-box .date-display {
    font-size: 0.9rem;
    color: #8a95a5;
    margin-bottom: 6px;
    letter-spacing: 1px;
}
.time-card .time-display {
    font-family: 'Orbitron', 'Noto Sans SC', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #1f2d3d;
    display: flex;
    align-items: center;
    gap: 4px;
}
.time-card .time-display .colon {
    color: #2b7de9;
    animation: time-blink 1s infinite;
}
@keyframes time-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.time-card .time-display .time-span {
    background: rgba(43,125,233,0.08);
    border-radius: 8px;
    padding: 6px 8px;
    min-width: 28px;
    text-align: center;
}

.weather-hero {
    background: rgba(255,255,255,0.74);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 8px 30px rgba(31,77,120,0.10);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}
.weather-hero .wh-left { text-align: left; }
.weather-hero .location {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2d3d;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.weather-hero .location i { color: #ff4d6d; }
.weather-hero .location .province,
.weather-hero .location .city,
.weather-hero .location .district { color: #1f2d3d; }
.weather-hero .update-time {
    color: #8a95a5;
    font-size: 0.85rem;
    margin-bottom: 16px;
}
.weather-hero .temp-main {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(180deg, #1f2d3d 0%, #5b6b7c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}
.weather-hero .weather-desc {
    font-size: 1.25rem;
    color: #2b7de9;
    font-weight: 600;
    margin-bottom: 14px;
}
.weather-hero .tags { display: flex; gap: 10px; flex-wrap: wrap; }
.weather-hero .tags .tag {
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(43,125,233,0.08);
    color: #2b7de9;
    border: 1px solid rgba(43,125,233,0.18);
}
.weather-hero .tags .tag.warning {
    background: rgba(255,77,109,0.08);
    color: #ff4d6d;
    border-color: rgba(255,77,109,0.18);
}
.weather-hero .wh-right { text-align: center; }
.weather-hero .wh-right .weather-icon {
    width: 130px;
    height: 130px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(43,125,233,0.18));
}
.weather-hero .details-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(43,125,233,0.10);
}
.weather-hero .detail-item {
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(43,125,233,0.10);
    border-radius: 14px;
    padding: 18px 12px;
    text-align: center;
    transition: all 0.3s ease;
}
.weather-hero .detail-item:hover {
    background: rgba(43,125,233,0.06);
    border-color: rgba(43,125,233,0.25);
    transform: translateY(-3px);
}
.weather-hero .detail-item .icon {
    color: #2b7de9;
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.weather-hero .detail-item .value {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f2d3d;
    margin-bottom: 4px;
}
.weather-hero .detail-item .label {
    font-size: 0.8rem;
    color: #8a95a5;
}

.section-card {
    background: rgba(255,255,255,0.74);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 20px;
    padding: 26px;
    margin-bottom: 24px;
    box-shadow: 0 8px 30px rgba(31,77,120,0.10);
}
.section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f2d3d;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-title i { color: #2b7de9; }

/* 48小时趋势 */
.trend-chart-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 18px;
    border-radius: 12px;
    background: rgba(43,125,233,0.03);
    padding: 10px;
}
.trend-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    list-style: none;
    margin: 0;
}
.trend-list::-webkit-scrollbar { height: 4px; }
.trend-list::-webkit-scrollbar-thumb { background: rgba(43,125,233,0.25); border-radius: 2px; }
.trend-item {
    min-width: 82px;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(43,125,233,0.10);
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
    transition: all 0.3s ease;
}
.trend-item:hover {
    border-color: rgba(43,125,233,0.3);
    background: rgba(43,125,233,0.06);
}
.trend-item .hour { font-size: 0.8rem; color: #5b6b7c; margin-bottom: 8px; }
.trend-item .t-icon { width: 32px; height: 32px; margin-bottom: 8px; }
.trend-item .t-wind { font-size: 0.75rem; color: #8a95a5; line-height: 1.5; }

/* 预报标签 */
.forecast-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.forecast-tabs ul { display: flex; gap: 10px; flex-wrap: wrap; padding: 0; margin: 0; list-style: none; }
.forecast-tabs li a {
    display: block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(43,125,233,0.12);
    border-radius: 50px;
    color: #5b6b7c;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.forecast-tabs li a:hover,
.forecast-tabs li.active a {
    background: rgba(43,125,233,0.1);
    border-color: #2b7de9;
    color: #2b7de9;
    font-weight: 600;
}

/* 日历网格 & 设备显隐控制 */
.only-pc { display: inline; }
.only-mobile { display: none; }

/* 日历网格 */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}
.calendar-grid thead, .calendar-grid tbody { display: contents; }
.calendar-grid th {
    text-align: center;
    color: #8a95a5;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px;
}
.calendar-grid td {
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(43,125,233,0.08);
    border-radius: 14px;
    padding: 14px 8px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 110px;
}
.calendar-grid td:hover {
    border-color: rgba(43,125,233,0.25);
    background: rgba(43,125,233,0.05);
}
.calendar-grid td:empty { background: transparent; border: none; }
.calendar-grid .day { font-size: 0.85rem; color: #5b6b7c; margin-bottom: 8px; }
.calendar-grid .icon img { width: 34px; height: 34px; }
.calendar-grid .name { font-size: 0.8rem; color: #1f2d3d; margin: 8px 0; }
.calendar-grid .temperature {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2d3d;
}
.calendar-grid .temperature span:last-child { color: #8a95a5; font-weight: 400; }
.calendar-grid .sun {
    font-size: 0.7rem;
    color: #8a95a5;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.calendar-grid .sun i { color: #2b7de9; margin-right: 3px; }

/* 历史天气日历表格（.calendar 为真实 <table> 结构） */
.calendar { margin-bottom: 24px; }
.calendar table {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 10px;
    background: transparent;
}
.calendar th {
    text-align: center;
    color: #5b6b7c;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px;
}
.calendar td {
    background: transparent;
    border: none;
    padding: 0;
    text-align: center;
    vertical-align: top;
    transition: all 0.3s ease;
}
.calendar td:has(p.day) {
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(43,125,233,0.08);
    border-radius: 14px;
    padding: 14px 8px;
}
.calendar td:has(p.day):hover {
    border-color: rgba(43,125,233,0.25);
    background: rgba(43,125,233,0.05);
}
.calendar td:empty { background: transparent; border: none; }
.calendar .day { font-size: 0.85rem; color: #5b6b7c; margin-bottom: 8px; }
.calendar .icon img { width: 34px; height: 34px; }
.calendar .name { font-size: 0.8rem; color: #1f2d3d; margin: 8px 0; }
.calendar .temperature {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2d3d;
}
.calendar .sun {
    font-size: 0.7rem;
    color: #8a95a5;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.calendar .sun i { color: #2b7de9; margin-right: 3px; }

/* 详细数据表格 */
.table-inner { overflow-x: auto; }
.tech-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}
.tech-table thead th {
    text-align: center;
    color: #8a95a5;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px;
}
.tech-table tbody tr {
    background: rgba(255,255,255,0.55);
    transition: all 0.3s ease;
}
.tech-table tbody tr:hover {
    background: rgba(43,125,233,0.06);
}
.tech-table tbody td {
    padding: 16px 12px;
    text-align: center;
    color: #1f2d3d;
    font-size: 0.95rem;
    border-top: 1px solid rgba(43,125,233,0.08);
    border-bottom: 1px solid rgba(43,125,233,0.08);
    vertical-align: middle;
}
.tech-table tbody td:first-child { border-left: 1px solid rgba(43,125,233,0.08); border-radius: 12px 0 0 12px; }
.tech-table tbody td:last-child { border-right: 1px solid rgba(43,125,233,0.08); border-radius: 0 12px 12px 0; }
.tech-table .week { color: #2b7de9; font-weight: 700; margin-bottom: 4px; }
.tech-table .date { color: #8a95a5; font-size: 0.8rem; }
.tech-table .temp-range { font-weight: 700; color: #1f2d3d; }

/* 其他地区 */
.other-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.other-list li a {
    display: block;
    padding: 12px 16px;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(43,125,233,0.10);
    border-radius: 12px;
    color: #5b6b7c;
    text-decoration: none;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
}
.other-list li a:hover {
    background: rgba(43,125,233,0.08);
    border-color: rgba(43,125,233,0.3);
    color: #2b7de9;
    transform: translateY(-2px);
}

/* 10. 首页专属样式（从 index.html 内联样式迁移并适配浅色玻璃风） */
.app-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.card {
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(43,125,233,0.12);
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 8px 30px rgba(31,77,120,0.08);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    border-color: rgba(43,125,233,0.25);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(43,125,233,0.12);
}

.card-hd {
    font-size: 1.05rem;
    color: #1f2d3d;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(43,125,233,0.10);
    padding-bottom: 10px;
}
.card-hd i { color: #2b7de9; }

.map-container {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(43,125,233,0.06);
    padding: 10px;
    margin-bottom: 20px;
}
.inside-map .lind-link path {
    fill: rgba(43,125,233,0.15) !important;
    stroke: rgba(43,125,233,0.35) !important;
    transition: all 0.3s ease;
}
.inside-map .lind-link:hover path {
    fill: rgba(43,125,233,0.35) !important;
    stroke: #2b7de9 !important;
    filter: drop-shadow(0 0 8px rgba(43,125,233,0.35));
}
.inside-map .st1 {
    fill: #1f2d3d !important;
    font-family: 'Inter', 'Noto Sans SC', sans-serif !important;
    font-size: 11px !important;
    transition: fill 0.3s;
}
.inside-map .lind-link:hover .st1 {
    fill: #2b7de9 !important;
}

.region-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}
.region-group h4 {
    color: #2b7de9;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    border-left: 3px solid #4a9eff;
    padding-left: 8px;
}
.region-group a {
    display: block;
    color: #5b6b7c;
    text-decoration: none;
    font-size: 0.85rem;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s;
}
.region-group a:hover {
    color: #2b7de9;
    background: rgba(43,125,233,0.08);
    padding-left: 12px;
}

.world-city-list, .link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.world-city-list a, .link-list a {
    color: #5b6b7c;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 14px;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(43,125,233,0.12);
    border-radius: 20px;
    transition: all 0.3s;
}
.world-city-list a:hover, .link-list a:hover {
    color: #2b7de9;
    border-color: rgba(43,125,233,0.3);
    background: rgba(43,125,233,0.08);
    box-shadow: 0 0 10px rgba(43,125,233,0.12);
}

/* ---------- 国际天气 /world/ 大洲矩阵 ---------- */
.page-hero {
    text-align: center;
    padding: 30px 20px 10px;
    margin-bottom: 10px;
}
.page-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2d3d;
    margin: 0 0 10px;
}
.page-hero h1 .highlight {
    color: #2b7de9;
}
.page-hero p {
    color: #5b6b7c;
    font-size: 0.95rem;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

.module.mod-world {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}
.module.mod-world .bd {
    background: transparent !important;
    padding: 0 !important;
}

.world-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 24px;
    align-items: start;
}

.continent-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 8px 30px rgba(31, 77, 120, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.continent-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(43, 125, 233, 0.14);
}

.continent-card .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(43, 125, 233, 0.1);
}
.continent-card .card-header .icon-box {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #2b7de9 0%, #5da8ff 100%);
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(43, 125, 233, 0.25);
}
.continent-card .card-header .title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2d3d;
    text-align: left !important;
    line-height: 1.2 !important;
    margin: 0 !important;
}

.country-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px 12px;
}
.country-list li {
    display: block;
    margin: 0;
    padding: 0;
}
.country-list li a {
    display: block;
    color: #4a5a6a;
    font-size: 0.9rem;
    line-height: 1.4;
    padding: 6px 8px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.2s ease;
}
.country-list li a:hover {
    color: #2b7de9;
    background: rgba(43, 125, 233, 0.08);
    padding-left: 12px;
}

@media (max-width: 768px) {
    .world-matrix {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .country-list {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 6px 8px;
    }
    .page-hero h1 {
        font-size: 1.5rem;
    }
    .continent-card {
        padding: 16px;
    }
}

/* ---------- 景区天气 /jingqu/ 省份景点矩阵 ---------- */
.module.mod-list {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}
.module.mod-list .bd {
    background: transparent !important;
    padding: 0 !important;
}

.region-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    align-items: start;
}

.tech-region-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(31, 77, 120, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tech-region-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(43, 125, 233, 0.14);
}

.tech-region-card .c-hd {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(43, 125, 233, 0.1);
}
.tech-region-card .c-hd .title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f2d3d;
    text-decoration: none;
    line-height: 1.2;
    margin: 0;
}
.tech-region-card .c-hd .title:hover {
    color: #2b7de9;
}

.tech-region-card .c-bd ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 6px 10px;
}
.tech-region-card .c-bd li {
    display: block;
    margin: 0;
    padding: 0;
}
.tech-region-card .c-bd li a {
    display: block;
    color: #4a5a6a;
    font-size: 0.88rem;
    line-height: 1.4;
    padding: 5px 7px;
    border-radius: 5px;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.2s ease;
}
.tech-region-card .c-bd li a:hover {
    color: #2b7de9;
    background: rgba(43, 125, 233, 0.08);
    padding-left: 10px;
}

@media (max-width: 768px) {
    .region-matrix {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .tech-region-card .c-bd ul {
        grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
        gap: 5px 6px;
    }
    .tech-region-card {
        padding: 16px;
    }
}

.field-wrapper { margin-bottom: 15px; }
.field-title a {
    color: #1f2d3d;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 8px;
    border-bottom: 2px solid #4a9eff;
}

/* 辅助：统一旧模板中的文字颜色 */
.humidity, .pressure, .wind, .air, .sun, .update-time, .date, .day, .week, .hour, .name, .city, .district, .location, .province, .title, .value, .label, .tag, .tags, .warning, .current, .active, .highlight, .only-pc, .no-data-tip, .t-icon, .t-wind, .c-hd, .calendar, .calendar-grid, .wh-left, .wh-right, .mod-weather, .mod-time, .mod-trend, .mod-other, .box, .bd, .c-bd, .inner {
    color: inherit;
}

/* 兼容：旧模板详情页 .mod-weather 升级为百望玻璃卡片 */
.mod-weather {
    background: rgba(255,255,255,0.74) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255,255,255,0.7) !important;
    border-radius: 20px !important;
    padding: 32px !important;
    box-shadow: 0 10px 40px rgba(43,125,233,0.10) !important;
    color: #1f2d3d !important;
    margin-bottom: 24px !important;
}
.mod-weather .hd {
    line-height: 1.6 !important;
    color: #1f2d3d !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    margin-bottom: 16px !important;
}
.mod-weather .hd .province,
.mod-weather .hd .city,
.mod-weather .hd .district {
    color: #1f2d3d !important;
    margin-right: 8px !important;
}
.mod-weather .bd { color: #1f2d3d !important; }
.mod-weather .bd .temperature {
    line-height: 1 !important;
    font-weight: 800 !important;
    font-size: 4rem !important;
    color: #1f2d3d !important;
    margin-right: 16px !important;
}
.mod-weather .bd .name {
    line-height: 1 !important;
    font-size: 1.5rem !important;
    color: #2b7de9 !important;
    font-weight: 600 !important;
    margin-right: 16px !important;
}
.mod-weather .bd .tag {
    display: inline-block !important;
    padding: 5px 14px !important;
    line-height: 1.4 !important;
    border-radius: 50px !important;
    background: rgba(163,215,101,0.15) !important;
    color: #5a9c3a !important;
    border: 1px solid rgba(163,215,101,0.3) !important;
}
.mod-weather .bd .icon {
    float: right !important;
    margin-top: -15px !important;
}
.mod-weather .bd .icon img {
    width: 110px !important;
    height: 110px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 8px 20px rgba(43,125,233,0.18)) !important;
}
.mod-weather .ft {
    line-height: 1.5 !important;
    color: #5b6b7c !important;
    margin-top: 24px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(43,125,233,0.10) !important;
    display: flex !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
    align-items: center !important;
}
.mod-weather .ft span {
    margin-right: 0 !important;
    background: rgba(255,255,255,0.55) !important;
    border: 1px solid rgba(43,125,233,0.10) !important;
    border-radius: 14px !important;
    padding: 14px 18px !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    color: #1f2d3d !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}
.mod-weather .ft img {
    width: 20px !important;
    height: 20px !important;
    opacity: 0.7 !important;
}
/* 旧模板详情页：外层容器与模块统一为百望玻璃风，贴近新模板 */
.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}
.container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}
.mod-time {
    background: rgba(255,255,255,0.74) !important;
    border: 1px solid rgba(255,255,255,0.7) !important;
    border-radius: 18px !important;
    padding: 22px !important;
    margin-bottom: 24px !important;
    box-shadow: 0 8px 30px rgba(31,77,120,0.08) !important;
    color: #1f2d3d !important;
}
.module {
    background: rgba(255,255,255,0.74) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.7) !important;
    border-radius: 18px !important;
    box-shadow: 0 8px 30px rgba(31,77,120,0.08) !important;
    margin-bottom: 24px !important;
    overflow: hidden;
}
.module .hd {
    padding: 16px 22px !important;
    border-bottom: 1px solid rgba(43,125,233,0.10) !important;
    background: transparent !important;
}
.module .hd .title {
    color: #1f2d3d !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    text-align: left !important;
}
.module .bd {
    padding: 22px !important;
    background: transparent !important;
    color: #1f2d3d !important;
}

@media (max-width: 768px) {
    .only-pc { display: none !important; }
    .only-mobile { display: inline !important; }
    .app-container { padding: 15px; }
    .card { padding: 18px; border-radius: 18px; }
    .region-list { grid-template-columns: 1fr 1fr; }
    .map-container { padding: 6px; }
    .main-content { padding: 15px; }
    .mod-head .inner { flex-direction: column; align-items: stretch; }
    .mod-head .logo { text-align: center; margin-bottom: 10px; }
    .mod-head .logo img { height: 40px; margin: 0 auto; }
    .mod-head .search form { max-width: 100%; }
    .module-hd h1 { font-size: 1.4rem; }
    .tech-list-grid { grid-template-columns: 1fr; }
    .tech-card-bd ul { grid-template-columns: 1fr; }
    .tech-card-hd { flex-direction: column; align-items: flex-start; gap: 12px; }
    .tech-card-hd .weather-summary { align-items: flex-start; }
    .list-box-bd ul { grid-template-columns: 1fr; }
    .suggestions-list, #search-suggestions { right: 50px; }
    .search-hero { padding: 30px 20px; }
    .search-hero h1 { font-size: 1.4rem; }
    .search-hero h1 .highlight { font-size: 1.8rem; }
    .table-inner td { padding: 15px; font-size: 0.9rem; }
    .table-inner td a { font-size: 0.95rem; }
}
