:root {
    --tq-bg: #f5f7fb;
    --tq-card: #ffffff;
    --tq-border: #e5e7eb;
    --tq-text: #111827;
    --tq-muted: #6b7280;
    --tq-primary: #2563eb;
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: Arial, "Microsoft YaHei", sans-serif;
    background: var(--tq-bg);
    color: var(--tq-text);
    overflow-x: hidden;
}

a {
    color: var(--tq-primary);
    text-decoration: none;
}

.tq-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.tq-header {
    background: #f7f7f7;
    border-bottom: 1px solid #cfd5dd;
}

.tq-header-top {
    border-bottom: 1px solid #d2d8e0;
    background: #f7f7f7;
}

.tq-header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 46px;
    padding: 6px 0;
}

.tq-header-top-title {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 13px;
    color: #334155;
    font-weight: 600;
    line-height: 1.5;
}

.tq-header-top-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
    flex: 0 0 auto;
    max-width: 68%;
    font-size: 12px;
}

.tq-header-top-nav a {
    display: inline-block;
    padding: 0;
    border: 0;
    background: transparent;
    color: #334155;
    font-weight: 600;
    line-height: 1.6;
    white-space: nowrap;
    transition: color .2s ease;
}

.tq-header-top-nav a + a::before {
    content: "|";
    margin-right: 8px;
    color: #94a3b8;
}

.tq-header-top-nav a:hover {
    background: transparent;
    color: #1d4ed8;
    text-decoration: underline;
}

.tq-header-panel {
    position: relative;
    z-index: 0;
    display: grid;
    grid-template-columns: minmax(220px, 300px) minmax(280px, 1fr) max-content;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 22px;
    margin: 12px 0 0;
    background: #f2f2f8;
    border: 0;
}

.tq-header-panel::before {
    content: "";
    position: absolute;
    top: -12px;
    bottom: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #f2f2f8;
    z-index: -1;
}

.tq-header-brand {
    min-width: 0;
}

.tq-logo {
    display: inline-block;
    font-size: 38px;
    font-weight: 700;
    color: var(--tq-text);
    line-height: 1;
}

.tq-slogan {
    margin: 8px 0 0;
    color: var(--tq-muted);
    font-size: 12px;
}

.tq-header-search {
    display: flex;
    width: 100%;
    max-width: 100%;
    justify-self: center;
    flex-wrap: nowrap;
    gap: 0;
}

.tq-header-search-field {
    position: relative;
    width: 100%;
}

.tq-header-search .tq-search-input {
    width: 100%;
    min-width: 0;
    border-radius: 2px;
    border-color: #d1d5db;
    height: 40px;
    padding: 9px 42px 9px 14px;
}

.tq-header-search .tq-header-search-button {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: translateY(-50%);
}

.tq-header-search-button::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    margin: 0 auto;
    background: no-repeat center/16px 16px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-3.5-3.5'/%3E%3C/svg%3E");
}

.tq-header-search-button:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-3.5-3.5'/%3E%3C/svg%3E");
}

.tq-header-brief {
    display: flex;
    justify-self: end;
    justify-content: flex-end;
    align-items: center;
    min-width: 0;
    max-width: 100%;
}

.tq-header-brief-main {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    color: #374151;
    white-space: nowrap;
    font-size: 14px;
    max-width: 100%;
}

.tq-header-brief-region {
    font-weight: normal;
    color: #374151;
}

.tq-header-brief-temp {
    color: #111827;
}

.tq-header-brief-range {
    color: #6b7280;
}

.tq-header-brief-text {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #6b7280;
}

.tq-header-brief-text i {
    font-size: 14px;
    color: #4b5563;
}

.tq-main {
    background: #fff;
    padding: 24px 0 40px;
}

.tq-hero,
.tq-panel,
.tq-weather-hero {
    background: var(--tq-card);
    border: 1px solid var(--tq-border);
    border-radius: 12px;
    padding: 22px;
    margin-bottom: 18px;
}

.tq-home-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 0;
    align-items: stretch;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1592210454359-9043f067919b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    border: 1px solid #315e95;
    border-radius: 10px;
    margin-bottom: 22px;
    box-shadow: 0 18px 38px rgba(11, 40, 84, 0.18);
    width: 100%;
    max-width: 100%;
}

.tq-home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 59, 120, 0.7) 0%, rgba(27, 77, 139, 0.65) 42%, rgba(57, 92, 135, 0.6) 72%, rgba(93, 105, 131, 0.55) 100%);
    z-index: 1;
}

.tq-home-hero--sunny::before {
    background: linear-gradient(135deg, rgba(29, 95, 168, 0.75) 0%, rgba(46, 127, 203, 0.65) 46%, rgba(110, 183, 242, 0.55) 100%);
}

.tq-home-hero--cloudy::before,
.tq-home-hero--wind::before {
    background: linear-gradient(135deg, rgba(54, 83, 120, 0.75) 0%, rgba(74, 103, 138, 0.65) 42%, rgba(126, 144, 167, 0.55) 100%);
}

.tq-home-hero--rain::before {
    background: linear-gradient(135deg, rgba(24, 62, 105, 0.75) 0%, rgba(41, 85, 127, 0.65) 44%, rgba(92, 111, 133, 0.55) 100%);
}

.tq-home-hero--storm::before {
    background: linear-gradient(135deg, rgba(15, 39, 69, 0.8) 0%, rgba(32, 58, 97, 0.7) 38%, rgba(79, 85, 104, 0.6) 100%);
}

.tq-home-hero--snow::before {
    background: linear-gradient(135deg, rgba(71, 102, 132, 0.75) 0%, rgba(109, 135, 160, 0.65) 46%, rgba(176, 192, 207, 0.55) 100%);
}

.tq-home-hero--fog::before {
    background: linear-gradient(135deg, rgba(78, 98, 117, 0.75) 0%, rgba(109, 127, 143, 0.65) 44%, rgba(144, 157, 168, 0.55) 100%);
}

.tq-home-hero > * {
    position: relative;
    z-index: 2;
}

.tq-home-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100%;
    padding: 6px 24px 16px;
    gap: 8px;
}

.tq-home-hero-city {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tq-home-hero-city h1 {
    margin: 0 !important;
    font-size: 24px !important;
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: #fff;
}

.tq-home-hero-switch {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.tq-home-hero-update {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.tq-home-hero-main-info {
    display: flex;
    align-items: center;
    gap: 18px;
}

.tq-home-hero-main-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: transparent;
    color: #fff;
}

.tq-home-hero-main-info-icon i {
    font-size: 48px;
}

.tq-home-hero-main-info-text {
    display: flex;
    align-items: baseline;
    gap: 10px;
    min-width: 0;
}

.tq-home-hero-main-info-temp {
    font-size: 54px;
    line-height: 1;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.05em;
    white-space: nowrap;
}

.tq-home-hero-main-info-temp span {
    margin-left: 2px;
    font-size: 28px;
}

.tq-home-hero-main-info-cond {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    white-space: nowrap;
}

.tq-home-hero-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.tq-home-hero-detail-item {
    display: grid;
    justify-items: center;
    gap: 3px;
    padding: 8px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.tq-home-hero-detail-item b {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.tq-home-hero-detail-item span {
    font-size: 18px;
    font-weight: 700;
}

.tq-home-hero-right {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border-left: 2px dashed rgba(255, 255, 255, 0.3);
}



.tq-home-hero h1 {
    margin: 0 0 10px;
    font-size: 46px;
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: #fff;
}

.tq-home-hero-main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100%;
    padding: 32px 34px;
}

.tq-home-province-hero {
    gap: 16px;
}

.tq-home-province-hero-head {
    display: grid;
    gap: 8px;
}

.tq-home-hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.75;
}

.tq-home-badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 700;
}

.tq-home-province-hero-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 2px;
}

.tq-home-province-hero-meta span {
    padding: 4px 12px;
    font-size: 12px;
    line-height: 1.5;
    white-space: nowrap;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #475569;
}

.tq-home-province-hero-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px;
}

.tq-home-province-hero-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 6px 4px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid #dbe6f6;
    color: var(--tq-text);
    font-size: 14px;
    line-height: 1.35;
    text-align: center;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.tq-home-province-hero-link:hover {
    color: #1d4ed8;
    border-color: #bfdbfe;
    background: #fff;
    transform: translateY(-1px);
}

.tq-home-province-hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 4px;
}

.tq-home-province-hero-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #dbe6f6;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 700;
}

.tq-home-province-hero-action:hover {
    background: #eff6ff;
}

.tq-home-hero-title {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100%;
    padding: 0;
    max-width: 540px;
}

.tq-home-hero-title h1 {
    margin: 0 0 10px !important;
    font-size: 48px !important;
}

.tq-home-hero-kicker {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tq-home-hero-update {
    margin-top: 2px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
}

.tq-home-hero-now {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.tq-home-hero-now-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.tq-home-hero-now-icon i {
    font-size: 42px;
}

.tq-home-hero-now-main {
    display: flex;
    align-items: baseline;
    gap: 12px;
    min-width: 0;
}

.tq-home-hero-now-value {
    font-size: 64px;
    line-height: 1;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.05em;
    white-space: nowrap;
}

.tq-home-hero-now-value span {
    margin-left: 2px;
    font-size: 34px;
}

.tq-home-hero-now-text {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    white-space: nowrap;
}

.tq-home-hero-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.tq-home-hero-stat-grid span {
    display: grid;
    gap: 6px;
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(7, 24, 56, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.tq-home-hero-stat-grid b {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
}

.tq-home-province-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tq-home-province-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--tq-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}



.tq-home-hero-forecast-board {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 100%;
    color: #fff;
}

.tq-home-forecast-item {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 8px;
    min-width: 0;
    padding: 14px 10px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
}

.tq-home-forecast-item:first-child {
    border-left: 0;
}

.tq-home-forecast-day {
    font-style: normal;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.tq-home-forecast-day span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
}

.tq-home-forecast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tq-home-forecast-icon i {
    font-size: 46px;
    color: #fff;
}

.tq-home-forecast-temp {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}

.tq-home-forecast-cond {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.tq-home-forecast-wind {
    display: grid;
    gap: 4px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.tq-home-card-title {
    font-size: 16px;
    font-weight: 700;
}

.tq-home-card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.tq-home-card-update {
    color: var(--tq-muted);
    font-size: 14px;
    line-height: 1.4;
}

.tq-home-card-link {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--tq-text);
}

.tq-home-current-card {
    gap: 18px;
    height: 100%;
    padding: 28px 28px 24px;
    border: 1px solid #d6deea;
    border-radius: 18px;
    background: linear-gradient(180deg, #fefefe 0%, #f7faff 100%);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.tq-home-current-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
}

.tq-home-current-region {
    display: grid;
    gap: 8px;
}

.tq-home-current-region strong {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.tq-home-current-update {
    white-space: nowrap;
}

.tq-home-current-region span,
.tq-home-current-summary span,
.tq-home-current-meta span,
.tq-home-current-day span {
    color: var(--tq-muted);
}

.tq-home-current-region span {
    font-size: 14px;
}

.tq-home-current-range {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: #edf2ff;
    color: #1d4ed8;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.tq-home-current-main {
    display: grid;
    grid-template-columns: minmax(0, 124px) 56px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
}

.tq-home-current-temp {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
}

.tq-home-current-temp span {
    margin-left: 2px;
    font-size: 18px;
    color: var(--tq-muted);
    vertical-align: top;
}

.tq-home-current-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #f4f7fd;
}

.tq-home-current-icon i {
    font-size: 30px;
}

.tq-home-current-summary {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.tq-home-current-summary strong {
    font-size: 18px;
    line-height: 1.35;
}

.tq-home-current-summary span {
    font-size: 14px;
    line-height: 1.6;
}

.tq-home-current-meta {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 0;
    padding-top: 8px;
    font-size: 14px;
    white-space: nowrap;
}

.tq-home-current-meta span {
    flex: 0 0 auto;
}

.tq-home-current-days {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding-top: 14px;
    border-top: 1px dashed #d6deea;
}

.tq-home-current-day {
    display: grid;
    justify-items: center;
    gap: 4px;
    text-align: center;
}

.tq-home-current-day em {
    font-style: normal;
    color: var(--tq-muted);
    font-size: 13px;
}

.tq-home-current-day i {
    font-size: 20px;
    margin: 4px 0;
}

.tq-home-current-day strong {
    font-size: 16px;
    font-weight: 700;
}

.tq-home-current-day span {
    font-size: 13px;
    color: var(--tq-muted);
}

.tq-home-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.tq-home-recent-panel {
    grid-column: 1 / -1;
}

.tq-home-recent-panel .tq-link-item {
    display: block;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: clip;
}

.tq-home-province-panel {
    grid-column: 1 / -1;
}

.tq-home-province-panel .tq-link-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 8px;
}

.tq-home-province-panel .tq-link-item {
    padding: 8px 6px;
    font-size: 18px;
    line-height: 1.35;
}

.tq-panel-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.tq-panel > .tq-panel-title,
.tq-panel > .tq-province-section-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tq-panel > .tq-panel-title::before,
.tq-panel > .tq-province-section-title::before {
    content: "";
    width: 4px;
    height: 20px;
    border-radius: 2px;
    background: #2b78ff;
    flex: 0 0 auto;
}

.tq-link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 10px;
}

.tq-link-item {
    display: block;
    padding: 10px 12px;
    background: #f8fafc;
    border: 1px solid var(--tq-border);
    border-radius: 10px;
    color: var(--tq-text);
    text-align: center;
}

.tq-home-city-index {
    padding-top: 18px;
}

.tq-home-city-group {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    margin-top: 12px;
}

.tq-home-city-group:first-of-type {
    margin-top: 0;
}

.tq-home-city-group .tq-letter-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    border-radius: 8px;
    background: #eef2ff;
    color: #1d4ed8;
    font-size: 14px;
    font-weight: 700;
}

.tq-home-city-links {
    grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
    gap: 8px;
}

.tq-home-city-links .tq-link-item {
    padding: 8px 6px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.35;
}

.tq-city-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.tq-city-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--tq-border);
    border-radius: 12px;
    background: linear-gradient(180deg, #f8fbff, #ffffff);
    color: var(--tq-text);
}

.tq-city-card small {
    color: var(--tq-muted);
}

.tq-page-title {
    margin: 0 0 10px;
    font-size: 28px;
}

.tq-page-desc {
    margin: 0;
    color: var(--tq-muted);
}

.tq-list-page {
    max-width: 1040px;
}

.tq-list-shell {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.tq-list-page .tq-breadcrumb {
    margin: -22px 0 6px;
}

.tq-list-head {
    display: grid;
    gap: 10px;
    padding: 6px 0 18px;
    border-bottom: 1px solid #e5e7eb;
}

.tq-list-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
    color: #0f172a;
}

.tq-list-title::before {
    content: "";
    width: 6px;
    height: 18px;
    border-radius: 999px;
    background: linear-gradient(180deg, #60a5fa 0%, #2563eb 100%);
    flex: 0 0 auto;
}

.tq-list-head-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.8;
}

.tq-list-head-meta span + span::before {
    content: "/";
    margin-right: 10px;
    color: #cbd5e1;
}

.tq-list-desc {
    max-width: 860px;
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.9;
}

.tq-list-stream {
    margin-top: 8px;
}

.tq-list-card {
    min-width: 0;
    border-bottom: 1px solid #e5e7eb;
}

.tq-list-card-main {
    display: grid;
    grid-template-columns: 186px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 18px 0;
    color: var(--tq-text);
    transition: color 0.2s ease;
}

.tq-list-card-main:hover {
    color: #1d4ed8;
}

.tq-list-card-weather {
    position: relative;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 122px;
    padding: 22px 16px 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, #59b6f0 0%, #618df0 52%, #6b67ef 100%);
    box-shadow: 0 10px 24px rgba(96, 125, 240, 0.16);
    overflow: hidden;
    text-align: left;
}

.tq-list-card-weather::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 16px;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(1px);
    pointer-events: none;
}

.tq-list-card-weather::after {
    content: "";
    position: absolute;
    left: 28%;
    right: -20%;
    bottom: -24px;
    height: 52px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.11);
    pointer-events: none;
}

.tq-list-card-weather-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
}

.tq-list-card-weather-icon i {
    color: #fff;
    font-size: 36px;
    line-height: 1;
    text-shadow: 0 4px 14px rgba(255, 255, 255, 0.14);
}

.tq-list-card-weather-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 4px;
    min-width: 0;
    align-content: center;
}

.tq-list-card-range {
    color: #fff;
    font-size: 24px;
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.tq-list-card-condition {
    color: rgba(255, 255, 255, 0.96);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
}

.tq-list-card-content {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.tq-list-card-body {
    display: grid;
    gap: 6px;
    min-height: 0;
}

.tq-list-card-title {
    margin: 0;
    color: #0f172a;
    font-size: 22px;
    line-height: 1.45;
    font-weight: 700;
}

.tq-list-card-desc {
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.8;
}

.tq-list-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.tq-list-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    color: #64748b;
    font-size: 12px;
    line-height: 1.8;
}

.tq-list-card-meta span + span::before {
    content: "/";
    margin-right: 10px;
    color: #cbd5e1;
}

.tq-list-card-meta a {
    color: inherit;
}

.tq-list-card-link {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    color: #64748b;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    white-space: nowrap;
}

.tq-list-card-link::after {
    content: ">>";
    margin-left: 6px;
    font-size: 12px;
}

.tq-list-pagebar {
    margin-top: 24px;
}

.tq-list-empty {
    margin-top: 24px;
    padding: 28px;
    border-radius: 18px;
}

.tq-list-empty h2 {
    margin: 0 0 10px;
    font-size: 22px;
    color: #0f172a;
}

.tq-list-empty p {
    margin: 0;
    color: #64748b;
    line-height: 1.9;
}

.tq-article-page {
    max-width: 1120px;
}

.tq-article-shell {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.tq-article-page .tq-breadcrumb {
    margin: -22px 0 6px;
}

.tq-breadcrumb {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0 0 18px;
    color: var(--tq-muted);
    font-size: 14px;
}

.tq-article-detail {
    display: grid;
    gap: 22px;
    color: var(--tq-text);
}

.tq-article-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.5fr);
    gap: 18px;
    padding: 10px 0 22px;
    border-bottom: 1px solid #e5e7eb;
    background: transparent;
}

.tq-article-hero--page {
    grid-template-columns: 1fr;
}

.tq-article-hero--single {
    grid-template-columns: 1fr;
}

.tq-article-hero-main {
    display: grid;
    align-content: start;
    gap: 0;
}

.tq-article-hero-kicker {
    display: inline;
    width: fit-content;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #64748b;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.8;
}

.tq-article-title {
    margin: 16px 0 0;
    font-size: 30px;
    line-height: 1.28;
    color: #0f172a;
}

.tq-article-summary {
    max-width: 760px;
    margin: 16px 0 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.9;
}

.tq-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 18px;
    color: var(--tq-muted);
    font-size: 14px;
}

.tq-article-meta span + span::before {
    content: "/";
    margin-right: 10px;
    color: #cbd5e1;
}

.tq-article-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    margin-top: 12px;
}

.tq-article-badge {
    display: inline;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #64748b;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.8;
}

.tq-article-badge + .tq-article-badge::before {
    content: "/";
    margin-right: 8px;
    color: #cbd5e1;
}

.tq-article-badge--soft {
    background: transparent;
    color: #64748b;
}

.tq-article-card,
.tq-article-sidecard {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.tq-article-sidecard-text,
.tq-article-inline-meta,
.tq-article-note,
.tq-article-tags {
    color: var(--tq-muted);
}

.tq-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.15fr) 230px;
    gap: 30px;
    align-items: start;
}

.tq-article-main,
.tq-article-sidebar {
    display: grid;
    gap: 18px;
}

.tq-article-card {
    color: var(--tq-text);
}

.tq-article-card--content {
    padding: 10px 0 0;
}

.tq-article-content {
    max-width: 760px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 2.05;
    color: #243041;
    word-break: break-word;
    letter-spacing: 0.01em;
}

.tq-article-content h2,
.tq-article-content h3,
.tq-article-content h4 {
    margin: 36px 0 16px;
    color: #111827;
    line-height: 1.5;
    font-weight: 700;
}

.tq-article-content h2 {
    margin-top: 42px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-size: 25px;
    background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
    border: 1px solid #d9e8fb;
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.tq-article-content h2::before {
    content: "";
    width: 6px;
    height: 24px;
    flex: 0 0 6px;
    border-radius: 999px;
    background: linear-gradient(180deg, #60a5fa 0%, #2563eb 100%);
}

.tq-article-content h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    font-size: 21px;
    border-bottom: 1px solid #dbe7f3;
}

.tq-article-content h3::before {
    content: "";
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border-radius: 999px;
    background: #93c5fd;
}

.tq-article-content h4 {
    font-size: 18px;
    color: #334155;
}

.tq-article-content p {
    margin: 0 0 20px;
}

.tq-article-content h2 + p,
.tq-article-content h3 + p,
.tq-article-content h4 + p {
    margin-top: 0;
    color: #475569;
}

.tq-article-content h2 + ul,
.tq-article-content h2 + ol,
.tq-article-content h3 + ul,
.tq-article-content h3 + ol,
.tq-article-content h2 + .tq-weather-table-wrap,
.tq-article-content h3 + .tq-weather-table-wrap,
.tq-article-content h2 + table,
.tq-article-content h3 + table {
    margin-top: 6px;
}

.tq-article-content .tq-weather-data-panel {
    margin: 34px 0 30px;
    border: 1px solid #dbe7f3;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    overflow: hidden;
}

.tq-article-content .tq-weather-data-panel-head {
    padding: 18px 18px 12px;
    background: linear-gradient(180deg, #f8fbff 0%, #f3f8ff 100%);
    border-bottom: 1px solid #e5eef8;
}

.tq-article-content .tq-weather-data-panel-head h2 {
    margin: 0;
    box-shadow: none;
}

.tq-article-content .tq-weather-data-panel-head p {
    margin: 12px 0 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.85;
}

.tq-article-content .tq-weather-data-panel > .tq-weather-table-wrap {
    margin: 0;
    padding: 16px;
}

.tq-article-content p:first-child {
    color: #3b4758;
    font-size: 18px;
}

.tq-weather-lead-panel {
    margin-bottom: 26px;
    padding: 0;
    border: 1px solid #dbe7f3;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.08);
    overflow: hidden;
}

.tq-weather-lead-hero {
    position: relative;
    padding: 24px 26px 28px;
    background: linear-gradient(135deg, #57b2ef 0%, #5b87ef 50%, #6165f0 100%);
}

.tq-weather-lead-hero::after {
    content: "";
    position: absolute;
    left: -6%;
    right: -6%;
    bottom: -42px;
    height: 96px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.tq-weather-lead-hero-main {
    position: relative;
    z-index: 1;
}

.tq-weather-lead-hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.tq-weather-lead-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: #2563eb;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.tq-weather-lead-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    line-height: 1.7;
}

.tq-weather-lead-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.tq-weather-lead-hero-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 18px;
    align-items: center;
}

.tq-weather-lead-temp strong {
    display: block;
    color: #fff;
    font-size: 64px;
    line-height: 1;
    font-weight: 300;
    letter-spacing: -0.04em;
    text-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
}

.tq-weather-lead-side {
    display: grid;
    gap: 10px;
    justify-items: start;
}

.tq-weather-lead-condition {
    color: #fff;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
}

.tq-weather-lead-aqi {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: #facc15;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(250, 204, 21, 0.26);
}

.tq-weather-lead-current {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.7;
}

.tq-weather-lead-icon {
    position: relative;
    width: 116px;
    height: 88px;
}

.tq-weather-lead-icon::before,
.tq-weather-lead-icon::after,
.tq-weather-lead-icon span::before,
.tq-weather-lead-icon span::after {
    content: "";
    position: absolute;
    border: 6px solid rgba(255, 255, 255, 0.96);
    border-radius: 999px;
}

.tq-weather-lead-icon::before {
    width: 44px;
    height: 44px;
    top: 18px;
    left: 10px;
    border-right-color: transparent;
    border-bottom-color: transparent;
}

.tq-weather-lead-icon::after {
    width: 56px;
    height: 56px;
    top: 8px;
    left: 34px;
    border-left-color: transparent;
    border-bottom-color: transparent;
}

.tq-weather-lead-icon span::before {
    width: 60px;
    height: 28px;
    top: 34px;
    left: 28px;
    border-top-color: transparent;
    border-left-color: transparent;
    transform: skewX(-8deg);
}

.tq-weather-lead-icon span::after {
    width: 48px;
    height: 0;
    top: 68px;
    left: 24px;
    border-width: 0 0 6px;
    border-radius: 999px;
    box-shadow: 22px -14px 0 0 rgba(255, 255, 255, 0.96);
}

.tq-weather-lead-note {
    padding: 20px 22px 22px;
}

.tq-weather-lead-note h3 {
    margin: 0 0 16px;
    padding-left: 12px;
    border-left: 4px solid #2563eb;
    color: #0f172a;
    font-size: 18px;
    line-height: 1.4;
}

.tq-weather-lead-note p {
    margin: 0 0 14px;
    color: #ea580c;
    font-size: 15px;
    line-height: 1.9;
}

.tq-weather-lead-note-copy {
    padding-top: 14px;
    border-top: 1px dashed #fdba74;
    color: #334155;
    font-size: 15px;
    line-height: 1.95;
}

.tq-article-content ul,
.tq-article-content ol {
    margin: 0 0 24px 24px;
    padding: 0;
}

.tq-article-content li {
    margin-bottom: 10px;
    line-height: 1.95;
}

.tq-article-content ul li::marker,
.tq-article-content ol li::marker {
    color: #60a5fa;
    font-weight: 700;
}

.tq-article-content a {
    color: #1d4ed8;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.tq-article-content a:hover {
    color: #1e40af;
}

.tq-article-content table {
    width: 100%;
    margin: 24px 0 30px;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    background: #fff;
    border: 1px solid #dbe7f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.tq-article-content th,
.tq-article-content td {
    padding: 13px 12px;
    border-right: 1px solid #e8eef5;
    border-bottom: 1px solid #e8eef5;
    text-align: center;
    vertical-align: middle;
    font-size: 14px;
}

.tq-article-content tr:last-child td {
    border-bottom: 0;
}

.tq-article-content tr th:last-child,
.tq-article-content tr td:last-child {
    border-right: 0;
}

.tq-article-content th {
    background: #f7fbff;
    color: #334155;
    font-weight: 700;
}

.tq-weather-table-wrap {
    margin: 26px 0 32px;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tq-article-content .tq-weather-table {
    margin: 0;
}

.tq-article-content--weather .tq-weather-table-wrap,
.tq-article-content--weather table {
    overflow: visible;
}

.tq-article-content--weather .tq-weather-table-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.tq-article-content--weather .tq-weather-table,
.tq-article-content--weather table {
    display: block;
    margin: 18px auto 28px;
    border: 0;
    box-shadow: none;
    background: transparent;
}

.tq-article-content--weather .tq-weather-table thead,
.tq-article-content--weather table thead {
    display: none;
}

.tq-article-content--weather .tq-weather-table tbody,
.tq-article-content--weather table tbody {
    display: grid;
    gap: 12px;
}

.tq-article-content--weather .tq-weather-table td,
.tq-article-content--weather .tq-weather-table th,
.tq-article-content--weather table td,
.tq-article-content--weather table th {
    padding: 0;
    border: 0;
    background: transparent;
}

.tq-article-content--weather .tq-weather-card {
    border: 1px solid #dbe7f3;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.tq-article-content--weather .tq-weather-icon {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 22px;
    margin: 0 auto 6px;
}

.tq-article-content--weather .tq-weather-icon::before,
.tq-article-content--weather .tq-weather-icon::after {
    content: "";
    position: absolute;
    box-sizing: border-box;
}

.tq-article-content--weather .tq-weather-icon--cloudy::before,
.tq-article-content--weather .tq-weather-icon--rain::before,
.tq-article-content--weather .tq-weather-icon--storm::before,
.tq-article-content--weather .tq-weather-icon--snow::before,
.tq-article-content--weather .tq-weather-icon--fog::before {
    left: 4px;
    top: 6px;
    width: 20px;
    height: 12px;
    border: 2px solid #64748b;
    border-radius: 999px;
    border-top-color: #64748b;
    background: #fff;
}

.tq-article-content--weather .tq-weather-icon--cloudy::after,
.tq-article-content--weather .tq-weather-icon--rain::after,
.tq-article-content--weather .tq-weather-icon--storm::after,
.tq-article-content--weather .tq-weather-icon--snow::after,
.tq-article-content--weather .tq-weather-icon--fog::after {
    left: 9px;
    top: 1px;
    width: 10px;
    height: 10px;
    border: 2px solid #64748b;
    border-right: 0;
    border-bottom: 0;
    border-radius: 999px;
    transform: rotate(45deg);
    background: #fff;
}

.tq-article-content--weather .tq-weather-icon--sunny::before {
    left: 6px;
    top: 3px;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.18);
}

.tq-article-content--weather .tq-weather-icon--sunny::after {
    left: 0;
    top: 0;
    width: 28px;
    height: 22px;
    background:
        linear-gradient(#fbbf24, #fbbf24) center top / 2px 5px no-repeat,
        linear-gradient(#fbbf24, #fbbf24) center bottom / 2px 5px no-repeat,
        linear-gradient(#fbbf24, #fbbf24) left center / 5px 2px no-repeat,
        linear-gradient(#fbbf24, #fbbf24) right center / 5px 2px no-repeat;
}

.tq-article-content--weather .tq-weather-icon--rain {
    margin-bottom: 8px;
}

.tq-article-content--weather .tq-weather-icon--rain span,
.tq-article-content--weather .tq-weather-icon--storm span,
.tq-article-content--weather .tq-weather-icon--snow span,
.tq-article-content--weather .tq-weather-icon--fog span,
.tq-article-content--weather .tq-weather-icon--wind span {
    display: none;
}

.tq-article-content--weather .tq-weather-icon--rain {
    background:
        linear-gradient(#60a5fa, #60a5fa) 8px 18px / 2px 6px no-repeat,
        linear-gradient(#60a5fa, #60a5fa) 14px 18px / 2px 6px no-repeat,
        linear-gradient(#60a5fa, #60a5fa) 20px 18px / 2px 6px no-repeat;
}

.tq-article-content--weather .tq-weather-icon--storm {
    background:
        linear-gradient(#f59e0b, #f59e0b) 13px 16px / 3px 8px no-repeat,
        linear-gradient(#f59e0b, #f59e0b) 16px 20px / 3px 7px no-repeat;
    transform: skewX(-8deg);
}

.tq-article-content--weather .tq-weather-icon--snow {
    background:
        radial-gradient(circle, #93c5fd 55%, transparent 56%) 8px 18px / 5px 5px no-repeat,
        radial-gradient(circle, #93c5fd 55%, transparent 56%) 15px 18px / 5px 5px no-repeat,
        radial-gradient(circle, #93c5fd 55%, transparent 56%) 22px 18px / 5px 5px no-repeat;
}

.tq-article-content--weather .tq-weather-icon--wind::before {
    left: 2px;
    top: 8px;
    width: 24px;
    height: 2px;
    background: #60a5fa;
    box-shadow: 0 6px 0 0 #93c5fd, 4px 12px 0 0 #cbd5e1;
}

.tq-article-content--weather .tq-weather-icon--wind::after {
    display: none;
}

.tq-article-content--weather .tq-weather-icon--fog {
    background:
        linear-gradient(#cbd5e1, #cbd5e1) 2px 18px / 24px 2px no-repeat,
        linear-gradient(#cbd5e1, #cbd5e1) 5px 22px / 20px 2px no-repeat;
}

.tq-article-content--weather .tq-weather-text {
    display: block;
}

.tq-article-content--weather .tq-weather-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 8px;
    background: #ef553b;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.tq-article-content--weather .tq-weather-table--hourly tbody {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    border: 1px solid #dbe7f3;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.tq-article-content--weather .tq-weather-table--hourly {
    width: 100%;
    margin: 18px 0 28px;
}

.tq-article-content--weather .tq-weather-table--hourly tr {
    display: grid;
    gap: 7px;
    justify-items: center;
    align-items: center;
    place-items: center;
    padding: 12px 6px;
    border-radius: 0;
    border-right: 1px solid #dbe7f3;
    border-bottom: 1px solid #dbe7f3;
    box-shadow: none;
    text-align: center;
}

.tq-article-content--weather .tq-weather-table--hourly tr:nth-child(8n) {
    border-right: 0;
}

.tq-article-content--weather .tq-weather-table--hourly tr:nth-last-child(-n + 8) {
    border-bottom: 0;
}

.tq-article-content--weather .tq-weather-table--hourly .tq-weather-col-time {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: #0f172a;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    word-break: normal;
    overflow-wrap: normal;
}

.tq-article-content--weather .tq-weather-table--hourly .tq-weather-col-weather {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #334155;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

.tq-article-content--weather .tq-weather-table--hourly .tq-weather-col-temp {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: #0f172a;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.tq-article-content--weather .tq-weather-table--hourly .tq-weather-col-tag {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tq-article-content--weather .tq-weather-table--hourly .tq-weather-text {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.tq-article-content--weather .tq-weather-table--hourly .tq-weather-icon,
.tq-article-content--weather .tq-weather-table--hourly .tq-weather-tag {
    margin-left: auto;
    margin-right: auto;
}

.tq-article-content--weather .tq-weather-table--forecast {
    padding: 12px;
    border: 1px solid #dbe7f3;
    border-radius: 18px;
    background: #f8fafc;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.tq-article-content--weather .tq-weather-table--forecast tbody {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0;
    border-radius: 14px;
    overflow: hidden;
}

.tq-article-content--weather .tq-weather-table--forecast tr {
    display: grid;
    gap: 8px;
    justify-items: center;
    padding: 18px 8px 16px;
    border: 0;
    border-right: 1px solid #dbe7f3;
    border-radius: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: none;
    text-align: center;
}

.tq-article-content--weather .tq-weather-table--forecast tr:last-child {
    border-right: 0;
}

.tq-article-content--weather .tq-weather-table--forecast .tq-weather-col-date {
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.tq-article-content--weather .tq-weather-table--forecast .tq-weather-col-weekday {
    color: #64748b;
    font-size: 12px;
    line-height: 1.4;
}

.tq-article-content--weather .tq-weather-table--forecast .tq-weather-col-weather {
    display: grid;
    justify-items: center;
    gap: 4px;
    min-height: 62px;
    color: #0f172a;
    font-size: 14px;
    line-height: 1.5;
}

.tq-article-content--weather .tq-weather-table--forecast .tq-weather-col-high {
    position: relative;
    width: 100%;
    padding-top: 10px;
    color: #f59e0b;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.tq-article-content--weather .tq-weather-table--forecast .tq-weather-col-high::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 8px;
    height: 8px;
    margin-left: -4px;
    border-radius: 999px;
    background: #f59e0b;
}

.tq-article-content--weather .tq-weather-table--forecast .tq-weather-col-low {
    position: relative;
    width: 100%;
    padding-top: 10px;
    color: #60a5fa;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.tq-article-content--weather .tq-weather-table--forecast .tq-weather-col-low::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 8px;
    height: 8px;
    margin-left: -4px;
    border-radius: 999px;
    background: #60a5fa;
}

.tq-article-content--weather .tq-weather-table--forecast .tq-weather-col-tag {
    padding-top: 6px;
}

.tq-article-content .tq-weather-table tbody tr:nth-child(even) {
    background: #fbfdff;
}

.tq-article-content .tq-weather-table tbody tr:hover {
    background: #f4f9ff;
}

.tq-article-content .tq-weather-table td:first-child,
.tq-article-content .tq-weather-table th:first-child {
    font-weight: 700;
    color: #0f172a;
}

.tq-article-content .tq-weather-table--hourly td:nth-child(1),
.tq-article-content .tq-weather-table--hourly th:nth-child(1) {
    width: 84px;
}

.tq-article-content .tq-weather-table--hourly td:nth-child(2),
.tq-article-content .tq-weather-table--hourly th:nth-child(2),
.tq-article-content .tq-weather-table--forecast td:nth-child(2),
.tq-article-content .tq-weather-table--forecast th:nth-child(2) {
    text-align: left;
}

.tq-article-content .tq-weather-table--hourly td:nth-child(3),
.tq-article-content .tq-weather-table--hourly th:nth-child(3),
.tq-article-content .tq-weather-table--forecast td:nth-child(3),
.tq-article-content .tq-weather-table--forecast th:nth-child(3) {
    color: #b45309;
    font-weight: 700;
}

.tq-article-content .tq-weather-table--forecast td:nth-child(1),
.tq-article-content .tq-weather-table--forecast th:nth-child(1) {
    width: 108px;
}

.tq-article-content .tq-weather-table--forecast td:nth-child(1) {
    color: #1d4ed8;
}

.tq-article-content .tq-weather-table--forecast td:nth-child(2),
.tq-article-content .tq-weather-table--forecast th:nth-child(2) {
    text-align: center !important;
}

.tq-article-content .tq-weather-table--hourly td:nth-child(2),
.tq-article-content .tq-weather-table--hourly th:nth-child(2) {
    text-align: center !important;
}

.tq-article-content .tq-weather-table--hourly th:nth-child(2) {
    text-align: center !important;
}

.tq-article-content .tq-weather-table--hourly td:nth-child(2) {
    padding-left: 6px;
    padding-right: 6px;
}

.tq-article-content .tq-weather-table--hourly .tq-weather-col-weather {
    text-align: center;
    white-space: nowrap;
}

.tq-article-content .tq-weather-table--hourly .tq-weather-text {
    display: inline;
    text-align: center;
    white-space: nowrap;
    line-height: 1.4;
    vertical-align: middle;
}

.tq-article-content .tq-weather-table--hourly .tq-weather-icon {
    display: inline-block;
    margin: 0;
    left: auto;
    margin-right: 4px;
    transform: scale(0.72);
    transform-origin: center center;
    vertical-align: middle;
}

.tq-article-content .tq-weather-table--hourly .tq-weather-icon--storm {
    transform: scale(0.72) skewX(-8deg);
}

.tq-article-content .tq-weather-table--hourly .tq-weather-tag {
    margin: 0 auto;
}

.tq-article-hourly-block .tq-weather-table--hourly thead {
    display: none;
}

.tq-article-hourly-block .tq-weather-table--hourly tbody {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
}

.tq-article-hourly-block .tq-weather-table--hourly tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
        "time temp"
        "weather weather"
        "tag tag";
    gap: 10px 12px;
    align-items: center;
    padding: 16px 14px 14px;
    border: 1px solid #dbeafe;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.08);
    text-align: center;
}

.tq-article-hourly-block .tq-weather-table--hourly .tq-weather-col-time,
.tq-article-hourly-block .tq-weather-table--hourly .tq-weather-col-weather,
.tq-article-hourly-block .tq-weather-table--hourly .tq-weather-col-temp,
.tq-article-hourly-block .tq-weather-table--hourly .tq-weather-col-tag {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.tq-article-hourly-block .tq-weather-table--hourly .tq-weather-col-weather {
    grid-area: weather;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
}

.tq-article-hourly-block .tq-weather-table--hourly .tq-weather-col-time {
    grid-area: time;
    justify-content: flex-start;
    text-align: left;
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.tq-article-hourly-block .tq-weather-table--hourly .tq-weather-col-time::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 6px;
    border-radius: 999px;
    background: #60a5fa;
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.14);
}

.tq-article-hourly-block .tq-weather-table--hourly .tq-weather-col-time {
    display: inline-flex;
    align-items: center;
    width: auto;
    justify-self: start;
    padding: 7px 10px;
    border-radius: 999px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
}

.tq-article-hourly-block .tq-weather-table--hourly .tq-weather-col-temp {
    grid-area: temp;
    justify-content: flex-end;
    text-align: right;
    color: #f97316;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.tq-article-hourly-block .tq-weather-table--hourly .tq-weather-col-temp::after {
    content: "实况";
    margin-left: 6px;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0;
}

.tq-article-hourly-block .tq-weather-table--hourly .tq-weather-icon {
    margin: 0 auto;
    width: 34px;
    height: 26px;
    flex: 0 0 auto;
}

.tq-article-hourly-block .tq-weather-table--hourly .tq-weather-text {
    display: block;
    text-align: center;
    white-space: nowrap;
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.tq-article-hourly-block .tq-weather-table--hourly .tq-weather-col-tag {
    grid-area: tag;
    justify-content: center;
}

.tq-article-hourly-block .tq-weather-table--hourly .tq-weather-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    width: 100%;
    padding: 0 12px;
    margin: 0;
    border-radius: 999px;
    border: 1px solid #dbeafe;
    background: #f8fbff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.tq-article-hourly-block .tq-weather-table--hourly .tq-weather-col-time,
.tq-article-hourly-block .tq-weather-table--hourly .tq-weather-col-weather,
.tq-article-hourly-block .tq-weather-table--hourly .tq-weather-col-temp,
.tq-article-hourly-block .tq-weather-table--hourly .tq-weather-col-tag {
    align-items: center;
}

.tq-article-hourly-block .tq-weather-table--hourly .tq-weather-col-time,
.tq-article-hourly-block .tq-weather-table--hourly .tq-weather-col-temp {
    align-self: start;
}

.tq-article-hourly-block .tq-weather-table--hourly .tq-weather-col-weather,
.tq-article-hourly-block .tq-weather-table--hourly .tq-weather-col-tag {
    width: 100%;
}

.tq-article-hourly-block .tq-weather-table--hourly .tq-weather-col-time {
    color: #0f172a;
    color: #2563eb;
}

.tq-article-content blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    background: linear-gradient(180deg, #f8fbff 0%, #f3f7fc 100%);
    border-left: 4px solid #60a5fa;
    border-radius: 0 14px 14px 0;
    color: #475569;
}

.tq-article-content hr {
    margin: 32px 0;
    border: 0;
    border-top: 1px solid #e5e7eb;
}

.tq-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.tq-article-footer {
    padding-top: 18px;
    margin-top: 22px;
    border-top: 1px solid var(--tq-border);
}

.tq-article-tags {
    font-size: 14px;
    line-height: 1.8;
}

.tq-article-sidebar {
    position: sticky;
    top: 12px;
}

.tq-article-sidecard {
    display: grid;
    gap: 12px;
    padding: 16px 16px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.tq-article-sidecard--weather {
    border-color: #d9e8fb;
    background: linear-gradient(180deg, #f8fbff 0%, #f3f8ff 100%);
}

.tq-article-sidecard-title {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: #111827;
}

.tq-article-sidecard-text {
    margin: 0;
    font-size: 13px;
    line-height: 1.85;
}

.tq-article-facts,
.tq-article-note-list {
    display: grid;
    gap: 10px;
}

.tq-article-fact {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e5e7eb;
}

.tq-article-fact:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.tq-article-fact span {
    color: var(--tq-muted);
    font-size: 12px;
    line-height: 1.7;
}

.tq-article-fact strong {
    color: #111827;
    font-size: 13px;
    line-height: 1.7;
    font-weight: 400;
    text-align: right;
}

.tq-article-actions {
    display: grid;
    gap: 10px;
}

.tq-article-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid #2563eb;
    border-radius: 10px;
    background: #2563eb;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.tq-article-action:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #fff;
}

.tq-article-action--ghost {
    background: #fff;
    color: #2563eb;
}

.tq-article-action--ghost:hover {
    background: #eff6ff;
    color: #1d4ed8;
}

.tq-article-inline-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: 12px;
    line-height: 1.7;
}

.tq-article-note {
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    font-size: 12px;
    line-height: 1.85;
}

.tq-article-card--section {
    padding: 18px 0 0;
    border-top: 1px solid #e5e7eb;
}

.tq-article-section-head {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.tq-article-section-title {
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
    color: #111827;
}

.tq-article-section-desc {
    margin: 0;
    color: var(--tq-muted);
    font-size: 13px;
    line-height: 1.8;
}

.tq-article-section-copy {
    color: #374151;
    font-size: 15px;
    line-height: 1.95;
}

.tq-article-section-copy p {
    margin: 0 0 12px;
}

.tq-article-link-inline {
    color: #1d4ed8;
    text-decoration: underline;
}

.tq-article-link-inline:hover {
    color: #1e40af;
}

.tq-article-link-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.tq-article-link-chip {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid #dbe7f3;
    border-radius: 999px;
    background: #f8fbff;
    color: #334155;
    font-size: 13px;
    line-height: 1.4;
    text-decoration: none;
    transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}

.tq-article-link-chip:hover {
    border-color: #93c5fd;
    background: #eff6ff;
    color: #1d4ed8;
}

.tq-article-link-grid,
.tq-article-related-grid,
.tq-article-nav-grid {
    display: grid;
    gap: 14px;
}

.tq-article-link-grid,
.tq-article-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tq-article-nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tq-article-link-card,
.tq-article-related-card,
.tq-article-nav-card {
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    color: var(--tq-text);
    transition: color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.tq-article-link-card:hover,
.tq-article-related-card:hover,
.tq-article-nav-card:hover {
    border-color: #cfe0f6;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
    transform: translateY(-1px);
    color: #1d4ed8;
}

.tq-article-link-card strong,
.tq-article-related-card strong,
.tq-article-nav-card strong {
    font-size: 15px;
    line-height: 1.7;
    color: #111827;
}

.tq-article-link-card span,
.tq-article-related-card span,
.tq-article-nav-card span,
.tq-article-nav-card em {
    color: var(--tq-muted);
    font-size: 12px;
    line-height: 1.7;
    font-style: normal;
}

.tq-gap-top {
    margin-top: 16px;
}

.tq-section-desc {
    margin: -4px 0 14px;
    color: var(--tq-muted);
}

.tq-weather-hero {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.tq-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(260px, 0.9fr);
    gap: 20px;
    background: var(--tq-card);
    border: 1px solid var(--tq-border);
    border-radius: 12px;
    padding: 22px;
    margin-bottom: 18px;
}

.tq-detail-region {
    color: var(--tq-primary);
    font-size: 18px;
    font-weight: 700;
}

.tq-detail-title {
    margin: 10px 0 8px;
    font-size: 32px;
    line-height: 1.25;
}

.tq-detail-date,
.tq-detail-summary,
.tq-detail-air,
.tq-detail-meta-line {
    color: var(--tq-muted);
}

.tq-detail-date {
    margin-bottom: 10px;
}

.tq-detail-current {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    margin-bottom: 10px;
}

.tq-detail-temp {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
}

.tq-detail-temp sup {
    font-size: 22px;
    top: -1em;
}

.tq-detail-text {
    font-size: 22px;
    font-weight: 700;
}

.tq-detail-text,
.tq-weather-label,
.tq-detail-meta-line span,
.tq-detail-air {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tq-detail-text i,
.tq-weather-label i,
.tq-detail-meta-line i,
.tq-detail-air i {
    font-size: 16px;
    line-height: 1;
}

.tq-detail-range {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
}

.tq-detail-meta-line {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.tq-detail-summary {
    margin: 14px 0 10px;
    line-height: 1.9;
}

.tq-detail-air {
    font-size: 14px;
}

.tq-detail-side {
    display: grid;
    gap: 12px;
    align-content: start;
}

.tq-detail-side-card {
    padding: 16px;
    border: 1px solid var(--tq-border);
    border-radius: 12px;
    background: linear-gradient(180deg, #f8fbff, #ffffff);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tq-detail-side-card span,
.tq-hour-item small,
.tq-week-item small {
    color: var(--tq-muted);
}

.tq-aqi-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    min-width: 22px;
    height: 22px;
    padding: 0 8px;
    border-radius: 6px;
    font-size: 12px;
    line-height: 22px;
    white-space: nowrap;
    vertical-align: middle;
}

.tq-weather-label {
    justify-content: center;
}

.tq-detail-side-card strong {
    font-size: 24px;
}

.tq-detail-panel {
    padding-top: 18px;
}

.tq-detail-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.tq-panel-more {
    color: var(--tq-primary);
    font-size: 14px;
}

.tq-detail-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.tq-week-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
    gap: 12px;
}

.tq-week-item {
    padding: 14px 12px;
    border: 1px solid var(--tq-border);
    border-radius: 10px;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
}

.tq-week-item em {
    font-style: normal;
    color: var(--tq-muted);
}

.tq-hourly-grid--detail {
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
}

.tq-forecast15-list {
    display: grid;
    gap: 10px;
}

.tq-forecast15-item {
    display: grid;
    grid-template-columns: minmax(120px, 150px) minmax(80px, 1fr) minmax(120px, 180px);
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid var(--tq-border);
    border-radius: 10px;
    background: #fafafa;
}

.tq-forecast15-date {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tq-forecast15-date span,
.tq-forecast15-temp span,
.tq-forecast15-temp em {
    color: var(--tq-muted);
    font-style: normal;
}

.tq-forecast15-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.tq-forecast15-temp {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    align-items: center;
}

.tq-forecast15-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
    gap: 18px;
    margin-bottom: 18px;
}

.tq-forecast15-overview,
.tq-forecast15-sidepanel {
    background: #fff;
    border: 1px solid var(--tq-border);
    border-radius: 12px;
    padding: 18px 20px 20px;
}

.tq-forecast15-current {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 40px 0 16px;
}

.tq-forecast15-current-icon {
    width: 86px;
    text-align: center;
}

.tq-forecast15-current-icon i {
    font-size: 68px;
}

.tq-forecast15-current-temp {
    font-size: 70px;
    line-height: 1;
    font-weight: 300;
    color: #222;
}

.tq-forecast15-current-temp span {
    font-size: 24px;
    vertical-align: top;
}

.tq-forecast15-current-side {
    display: grid;
    gap: 8px;
}

.tq-forecast15-current-side strong {
    font-size: 22px;
}

.tq-forecast15-current-side span {
    font-size: 18px;
    color: #374151;
}

.tq-forecast15-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 12px;
}

.tq-forecast15-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.tq-forecast15-sidepanel .tq-panel-title {
    margin-bottom: 0;
}

.tq-forecast15-side-list {
    display: grid;
    gap: 0;
    border: 1px solid var(--tq-border);
    border-radius: 12px;
    overflow: hidden;
}

.tq-forecast15-side-list--chart {
    position: relative;
    background: #fff;
}

.tq-forecast15-side-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0;
    position: relative;
    z-index: 2;
}

.tq-forecast15-side-item {
    display: grid;
    grid-template-columns: minmax(92px, 108px) minmax(0, 1fr) minmax(86px, 96px);
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #fff;
    border-top: 1px solid var(--tq-border);
}

.tq-forecast15-side-item:first-child {
    border-top: 0;
}

.tq-forecast15-side-item--chart {
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: start;
    gap: 14px;
    min-height: 330px;
    padding: 22px 10px 18px;
    background: transparent;
    text-align: center;
    border-top: 0;
    border-right: 1px solid var(--tq-border);
}

.tq-forecast15-side-item--chart:last-child {
    border-right: 0;
}

.tq-forecast15-side-date,
.tq-forecast15-side-text,
.tq-forecast15-side-temp {
    display: flex;
    align-items: center;
}

.tq-forecast15-side-date {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.tq-forecast15-side-date span,
.tq-forecast15-side-temp span {
    color: var(--tq-muted);
}

.tq-forecast15-side-text {
    gap: 8px;
    min-width: 0;
}

.tq-forecast15-side-text i {
    font-size: 18px;
}

.tq-forecast15-side-text em {
    font-style: normal;
    white-space: nowrap;
}

.tq-forecast15-side-temp {
    justify-content: flex-end;
    gap: 8px;
}

.tq-forecast15-side-temp b {
    color: #f0a93c;
}

.tq-forecast15-side-icon {
    font-size: 24px;
    color: #333;
    line-height: 1;
}

.tq-forecast15-side-em {
    font-style: normal;
    text-decoration: none;
    font-size: 12px;
    line-height: 1.5;
}

.tq-forecast15-side-aqi {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    color: #fff;
    font-size: 12px;
    font-style: normal;
    line-height: 22px;
    text-decoration: none;
    margin-top: auto;
}

.tq-forecast15-side-aqimark {
    position: absolute;
    left: 0;
    bottom: -6px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    font-size: 12px;
    line-height: 22px;
    white-space: nowrap;
}

.tq-forecast15-side-chart {
    position: absolute;
    left: 0;
    right: 0;
    top: 162px;
    height: 150px;
    z-index: 1;
    pointer-events: none;
}

.tq-forecast15-side-chart-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.tq-forecast15-mainpanel {
    padding-top: 18px;
}

.tq-forecast15-mainpanel .tq-forecast15-list {
    gap: 12px;
}

.tq-forecast15-mainpanel .tq-forecast15-item {
    grid-template-columns: minmax(120px, 150px) minmax(120px, 1fr) minmax(120px, 180px);
    background: #fff;
}

.tq-forecast15-mainpanel .tq-forecast15-text i {
}

.tq-forecast15-sidepanel .tq-district-weekhead {
    margin-bottom: 14px;
}

.tq-forecast15-weaoo-page {
    display: grid;
    gap: 18px;
}

.tq-forecast15-simple-panel {
    padding-top: 18px;
}

.tq-spot-forecast15-panel {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.tq-spot-forecast15-panel > .tq-province-section-title {
    margin-bottom: 14px;
}

.tq-related-search-panel {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.tq-related-search-panel > .tq-panel-title {
    margin-bottom: 14px;
}

.tq-related-search-panel .tq-search-tags {
    gap: 10px 16px;
}

.tq-related-search-panel .tq-search-tag {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--tq-text);
}

.tq-related-search-panel .tq-search-tag:hover {
    color: var(--tq-text);
    text-decoration: underline;
}

.tq-seo-blocks-panel {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.tq-seo-blocks-panel > .tq-panel-title {
    margin-bottom: 14px;
}

.tq-seo-blocks-panel .tq-seo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tq-seo-faq-panel {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.tq-seo-faq-panel > .tq-panel-title {
    margin-bottom: 14px;
}

.tq-city-spots-panel {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.tq-city-spots-panel > .tq-panel-title {
    margin-bottom: 14px;
}

.tq-city-spots-panel .tq-spot-links {
    gap: 10px 16px;
}

.tq-city-spots-panel .tq-spot-link {
    display: inline;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--tq-text);
}

.tq-city-spots-panel .tq-spot-link:hover {
    color: var(--tq-text);
    border-color: transparent;
    background: transparent;
    text-decoration: underline;
}

.tq-page-info-panel {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.tq-city-article-panel {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.tq-city-article-panel > .tq-panel-title {
    margin-bottom: 14px;
}

.tq-city-article-list {
    display: grid;
    gap: 12px;
}

.tq-city-article-list-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid var(--tq-border);
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff, #fbfdff);
    color: inherit;
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.tq-city-article-list-item:hover {
    border-color: #9dc2ff;
    box-shadow: 0 10px 24px rgba(43, 120, 255, .08);
    transform: translateY(-1px);
}

.tq-city-article-list-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #eef5ff;
    color: #2b78ff;
    font-size: 18px;
    font-weight: 700;
}

.tq-city-article-list-main {
    min-width: 0;
}

.tq-city-article-list-main strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--tq-text);
}

.tq-city-article-list-main p {
    margin: 0;
    color: var(--tq-muted);
    line-height: 1.9;
}

.tq-city-article-list-side {
    display: grid;
    justify-items: end;
    gap: 8px;
}

.tq-city-article-list-meta {
    font-size: 12px;
    color: var(--tq-light);
    white-space: nowrap;
}

.tq-city-article-list-side em {
    font-style: normal;
    color: #2b78ff;
    white-space: nowrap;
}

.tq-city-article {
    padding: 18px 20px;
    border: 1px solid var(--tq-border);
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff, #fbfdff);
}

.tq-city-article h2 {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.6;
}

.tq-city-article p {
    margin: 0 0 12px;
    color: var(--tq-muted);
    line-height: 2;
}

.tq-city-article p:last-child {
    margin-bottom: 0;
}

.tq-page-info-panel > .tq-panel-title {
    margin-bottom: 14px;
}

.tq-spot-seo-blocks-panel {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.tq-spot-seo-blocks-panel > .tq-panel-title {
    margin-bottom: 14px;
}

.tq-spot-seo-blocks-panel .tq-seo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tq-forecast15-simple-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.tq-forecast15-simple-title {
    margin: 0;
    font-size: 28px;
    line-height: 1.35;
}

.tq-forecast15-simple-back {
    color: #2563eb;
    font-size: 14px;
    line-height: 1.6;
    white-space: nowrap;
}

.tq-forecast15-simple-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    max-width: 100%;
}

.tq-forecast15-simple-grid {
    display: grid;
    grid-template-columns: repeat(15, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid #e5e7eb;
    border-left: 1px solid #e5e7eb;
    background: #fff;
}

.tq-forecast15-simple-item {
    display: grid;
    justify-items: center;
    gap: 6px;
    padding: 14px 6px 12px;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
    background: #fff;
}

.tq-forecast15-simple-item strong {
    font-size: 13px;
    line-height: 1.4;
    display: block;
    white-space: nowrap;
}

.tq-forecast15-simple-item span,
.tq-forecast15-simple-item u {
    color: var(--tq-muted);
    font-size: 12px;
    line-height: 1.5;
    text-decoration: none;
}

.tq-forecast15-simple-item i {
    font-size: 22px;
    line-height: 1;
}

.tq-forecast15-simple-item em {
    font-style: normal;
    font-size: 12px;
    line-height: 1.5;
    white-space: nowrap;
}

.tq-forecast15-simple-item b {
    font-size: 15px;
    line-height: 1.3;
    color: #111827;
    font-weight: 400 !important;
    display: block;
}

.tq-forecast15-simple-item u {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 400;
    display: block;
}

.tq-forecast15-content-row {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
    gap: 18px;
    align-items: start;
}

.tq-forecast15-content-row > .tq-panel {
    margin-bottom: 0;
}

.tq-forecast15-content-row--stacked {
    align-items: start;
}

.tq-forecast15-content-main {
    display: grid;
    gap: 18px;
    align-content: start;
}

.tq-forecast15-content-main > .tq-panel {
    margin-bottom: 0;
}

.tq-forecast15-directory-panel,
.tq-forecast15-share-panel {
    padding-top: 18px;
}

.tq-forecast15-share-panel {
    max-width: 380px;
    justify-self: end;
}

.tq-forecast15-directory-panel .tq-province-section-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.tq-forecast15-directory-panel .tq-province-section-title::before {
    display: block;
}

.tq-forecast15-share-panel .tq-province-section-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.tq-forecast15-share-panel .tq-province-section-title::before {
    display: block;
}

.tq-forecast15-directory-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid #e5e7eb;
    border-left: 1px solid #e5e7eb;
    background: #fff;
}

.tq-forecast15-directory-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tq-forecast15-directory-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 12px;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    background: #fafafa;
    color: var(--tq-text);
    text-align: center;
    transition: color .2s ease, background-color .2s ease;
}

.tq-forecast15-directory-link strong {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tq-forecast15-directory-link:hover {
    background: #fff;
    color: #1d4ed8;
}

.tq-forecast15-directory-link--extra {
    display: none;
}

.tq-forecast15-directory-link--more {
    cursor: pointer;
    color: #374151;
}

.tq-forecast15-toggle-close {
    display: none;
}

.tq-forecast15-directory-more-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-left: 6px;
    border: 1px solid #9ca3af;
    border-radius: 999px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1;
    transition: transform .2s ease;
}

.tq-forecast15-directory-toggle:checked + .tq-forecast15-directory-list .tq-forecast15-directory-link--extra {
    display: flex;
}

.tq-forecast15-directory-toggle:checked + .tq-forecast15-directory-list .tq-forecast15-toggle-open {
    display: none;
}

.tq-forecast15-directory-toggle:checked + .tq-forecast15-directory-list .tq-forecast15-toggle-close {
    display: inline;
}

.tq-forecast15-directory-toggle:checked + .tq-forecast15-directory-list .tq-forecast15-directory-more-icon {
    transform: rotate(45deg);
}

.tq-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.tq-stat-card {
    padding: 14px 16px;
    border: 1px solid var(--tq-border);
    border-radius: 12px;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tq-stat-card span {
    color: var(--tq-muted);
    font-size: 13px;
}

.tq-stat-card strong {
    font-size: 20px;
    line-height: 1.4;
}

.tq-now-card {
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px;
    border-radius: 12px;
    background: #eff6ff;
}

.tq-now-card--inline {
    max-width: 320px;
}

.tq-now-temp {
    font-size: 42px;
    font-weight: 700;
}

.tq-now-text {
    font-size: 18px;
}

.tq-now-meta {
    color: var(--tq-muted);
}

.tq-hourly-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 10px;
}

.tq-hour-item,
.tq-daily-item {
    padding: 14px;
    border: 1px solid var(--tq-border);
    border-radius: 10px;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tq-daily-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.tq-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.tq-overview-card {
    padding: 16px;
    border: 1px solid var(--tq-border);
    border-radius: 12px;
    background: linear-gradient(180deg, #f8fbff, #ffffff);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tq-overview-card span,
.tq-overview-card em {
    color: var(--tq-muted);
    font-style: normal;
}

.tq-overview-card strong {
    font-size: 24px;
}

.tq-tip-list {
    display: grid;
    gap: 10px;
}

.tq-tip-item {
    padding: 14px 16px;
    border: 1px solid var(--tq-border);
    border-radius: 10px;
    background: #fafafa;
    line-height: 1.8;
}

.tq-aqi-panel {
    display: grid;
    grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
    gap: 16px;
}

.tq-aqi-score {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--tq-border);
    border-radius: 12px;
    background: linear-gradient(180deg, #eff6ff, #ffffff);
    text-align: center;
}

.tq-aqi-score.tq-week-aqi-excellent {
    border-color: #1fa463;
    background: linear-gradient(180deg, #e9f8ef, #ffffff);
    color: #111;
}

.tq-aqi-score.tq-week-aqi-good {
    border-color: #e4c61a;
    background: linear-gradient(180deg, #fff8cf, #ffffff);
    color: #111;
}

.tq-aqi-score.tq-week-aqi-light {
    border-color: #f28c28;
    background: linear-gradient(180deg, #ffedd9, #ffffff);
    color: #111;
}

.tq-aqi-score.tq-week-aqi-medium {
    border-color: #e84d3c;
    background: linear-gradient(180deg, #ffe2de, #ffffff);
    color: #111;
}

.tq-aqi-score.tq-week-aqi-heavy {
    border-color: #8e44ad;
    background: linear-gradient(180deg, #f2e3f9, #ffffff);
    color: #111;
}

.tq-aqi-score.tq-week-aqi-severe {
    border-color: #7e0023;
    background: linear-gradient(180deg, #f7dde7, #ffffff);
    color: #111;
}

.tq-aqi-score span,
.tq-aqi-score em,
.tq-aqi-summary,
.tq-aqi-tags span:not(.tq-aqi-badge),
.tq-aqi-tip {
    color: var(--tq-muted);
    font-style: normal;
}

.tq-aqi-score strong {
    font-size: 40px;
    line-height: 1;
}

.tq-aqi-score.tq-week-aqi-excellent span,
.tq-aqi-score.tq-week-aqi-excellent strong,
.tq-aqi-score.tq-week-aqi-excellent em,
.tq-aqi-score.tq-week-aqi-good span,
.tq-aqi-score.tq-week-aqi-good strong,
.tq-aqi-score.tq-week-aqi-good em,
.tq-aqi-score.tq-week-aqi-light span,
.tq-aqi-score.tq-week-aqi-light strong,
.tq-aqi-score.tq-week-aqi-light em,
.tq-aqi-score.tq-week-aqi-medium span,
.tq-aqi-score.tq-week-aqi-medium strong,
.tq-aqi-score.tq-week-aqi-medium em,
.tq-aqi-score.tq-week-aqi-heavy span,
.tq-aqi-score.tq-week-aqi-heavy strong,
.tq-aqi-score.tq-week-aqi-heavy em,
.tq-aqi-score.tq-week-aqi-severe span,
.tq-aqi-score.tq-week-aqi-severe strong,
.tq-aqi-score.tq-week-aqi-severe em {
    color: #111;
}

.tq-aqi-main {
    display: grid;
    gap: 12px;
}

.tq-aqi-summary {
    margin: 0;
    line-height: 1.9;
}

.tq-aqi-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tq-aqi-tags span:not(.tq-aqi-badge),
.tq-aqi-tip {
    padding: 10px 12px;
    border: 1px solid var(--tq-border);
    border-radius: 10px;
    background: #fafafa;
}

.tq-aqi-tips {
    display: grid;
    gap: 10px;
}

.tq-district-mixpanel {
    display: grid;
    gap: 20px;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.tq-district-mixblock-indices {
    padding-top: 16px;
    border-top: 1px solid var(--tq-border);
}

.tq-district-mixlayout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.9fr);
    gap: 20px;
    align-items: start;
}

.tq-district-mixside {
    display: grid;
    gap: 16px;
}

.tq-district-mixside .tq-district-mixblock + .tq-district-mixblock {
    padding-top: 16px;
    border-top: 1px solid var(--tq-border);
}

.tq-district-mixhead {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 18px;
    font-weight: 700;
    color: var(--tq-text);
}

.tq-district-mixhead::before {
    content: "";
    width: 4px;
    height: 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, #60a5fa, #2563eb);
    box-shadow: 8px 0 0 -5px #93c5fd;
    flex: 0 0 auto;
}

.tq-district-page .tq-panel > .tq-panel-title,
.tq-district-page .tq-panel > .tq-province-section-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-left: 0;
    border-left: 0;
}

.tq-district-page .tq-panel > .tq-panel-title::before,
.tq-district-page .tq-panel > .tq-province-section-title::before {
    content: "";
    width: 4px;
    height: 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, #60a5fa, #2563eb);
    box-shadow: 8px 0 0 -5px #93c5fd;
    flex: 0 0 auto;
}

.tq-district-page .tq-panel-title,
.tq-district-page .tq-province-section-title,
.tq-district-page .tq-district-mixhead,
.tq-district-page .tq-tag-tabs-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    padding-left: 0;
    border-left: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--tq-text);
}

.tq-district-page .tq-panel-title::before,
.tq-district-page .tq-province-section-title::before,
.tq-district-page .tq-district-mixhead::before,
.tq-district-page .tq-tag-tabs-title::before {
    content: "";
    width: 4px;
    height: 20px;
    border-radius: 2px;
    background: #2b78ff;
    box-shadow: none;
    flex: 0 0 auto;
}

.tq-district-mixblock-air .tq-aqi-panel {
    height: 100%;
}

.tq-district-mixside .tq-tip-list {
    gap: 8px;
}

.tq-district-mixside .tq-tip-item {
    padding: 12px 14px;
    color: var(--tq-muted);
    font-size: 14px;
    line-height: 1.9;
}

.tq-district-mixside .tq-tip-item strong {
    color: inherit;
    font-weight: 400;
}

.tq-district-mixblock-indices .tq-daily-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
}

.tq-district-mixblock-indices .tq-daily-item {
    min-height: 74px;
    padding: 10px 12px;
    gap: 3px;
    text-align: center;
    justify-content: center;
    border-radius: 8px;
    background: #f8fafc;
}

.tq-district-mixblock-indices .tq-daily-item strong {
    font-size: 13px;
    line-height: 1.35;
}

.tq-district-mixblock-indices .tq-daily-item span {
    font-size: 12px;
    color: var(--tq-muted);
    line-height: 1.45;
}

.tq-link-grid--wide {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

#tq-all-districts {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

#tq-all-districts > .tq-province-section-title {
    margin-bottom: 14px;
}

#tq-all-districts .tq-link-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

#tq-all-districts .tq-link-item {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: var(--tq-text);
    text-align: left;
    line-height: 1.9;
}

#tq-all-districts .tq-link-item:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.tq-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.tq-info-card {
    padding: 16px;
    border: 1px solid var(--tq-border);
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.tq-info-card strong {
    display: block;
    margin-bottom: 8px;
}

.tq-info-card p {
    margin: 0;
    color: var(--tq-muted);
    line-height: 1.9;
}

.tq-seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.tq-seo-card,
.tq-seo-faq-item {
    padding: 16px;
    border: 1px solid var(--tq-border);
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff, #fbfdff);
}

.tq-seo-card h3,
.tq-seo-faq-item strong {
    display: block;
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.6;
}

.tq-seo-card p,
.tq-seo-faq-item p {
    margin: 0;
    color: var(--tq-muted);
    line-height: 1.95;
}

.tq-seo-faq-list {
    display: grid;
    gap: 12px;
}

.tq-province-page {
    display: grid;
    gap: 14px;
}

.tq-province-weaoo-page {
    max-width: none;
}

.tq-province-weaoo-page .tq-breadcrumb {
    margin-bottom: 10px;
    color: #8b8b8b;
    font-size: 13px;
}

.tq-province-weaoo-page .tq-breadcrumb a,
.tq-province-weaoo-page .tq-breadcrumb strong {
    color: #8b8b8b;
}

.tq-province-weaoo-section {
    background: transparent;
}

.tq-province-national-section {
    display: grid;
    gap: 12px;
}

.tq-province-national-desc {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.8;
}

.tq-province-national-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
}

.tq-province-national-link {
    display: block;
    padding: 10px 8px;
    border: 1px solid #dcdcdc;
    background: #fff;
    color: var(--tq-text);
    text-align: center;
    line-height: 1.4;
}

.tq-province-national-link:hover {
    color: #1d4ed8;
}

.tq-province-weaoo-page .tq-province-section-title {
    margin: 0 0 12px;
    padding-left: 0;
    border-left: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.tq-province-weaoo-page .tq-province-panel-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 1.4;
}

.tq-province-weaoo-page .tq-province-panel-title::before {
    content: "";
    width: 4px;
    height: 20px;
    border-radius: 2px;
    background: #2b78ff;
    flex: 0 0 auto;
}

.tq-province-city-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.tq-province-city-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    min-height: 44px;
    padding: 12px 8px;
    border: 1px solid #dcdcdc;
    color: var(--tq-text);
    background: #fff;
    text-align: center;
}

.tq-province-city-row strong {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}

.tq-province-city-meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #666;
    font-size: 12px;
    line-height: 1.4;
}

.tq-weather-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    color: #6b7280;
    font-size: 13px;
    line-height: 1;
}

.tq-article-content .tq-weather-table .tq-weather-icon {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 22px;
    margin: 0 auto 6px;
    color: inherit;
    font-size: 0;
    line-height: 0;
}

.tq-article-content .tq-weather-table .tq-weather-icon::before,
.tq-article-content .tq-weather-table .tq-weather-icon::after {
    content: "";
    position: absolute;
    box-sizing: border-box;
}

.tq-article-content .tq-weather-table .tq-weather-icon--cloudy::before,
.tq-article-content .tq-weather-table .tq-weather-icon--rain::before,
.tq-article-content .tq-weather-table .tq-weather-icon--storm::before,
.tq-article-content .tq-weather-table .tq-weather-icon--snow::before,
.tq-article-content .tq-weather-table .tq-weather-icon--fog::before {
    left: 4px;
    top: 6px;
    width: 20px;
    height: 12px;
    border: 2px solid #64748b;
    border-radius: 999px;
    background: #fff;
}

.tq-article-content .tq-weather-table .tq-weather-icon--cloudy::after,
.tq-article-content .tq-weather-table .tq-weather-icon--rain::after,
.tq-article-content .tq-weather-table .tq-weather-icon--storm::after,
.tq-article-content .tq-weather-table .tq-weather-icon--snow::after,
.tq-article-content .tq-weather-table .tq-weather-icon--fog::after {
    left: 9px;
    top: 1px;
    width: 10px;
    height: 10px;
    border: 2px solid #64748b;
    border-right: 0;
    border-bottom: 0;
    border-radius: 999px;
    transform: rotate(45deg);
    background: #fff;
}

.tq-article-content .tq-weather-table .tq-weather-icon--sunny::before {
    left: 6px;
    top: 3px;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.18);
}

.tq-article-content .tq-weather-table .tq-weather-icon--sunny::after {
    left: 0;
    top: 0;
    width: 28px;
    height: 22px;
    background:
        linear-gradient(#fbbf24, #fbbf24) center top / 2px 5px no-repeat,
        linear-gradient(#fbbf24, #fbbf24) center bottom / 2px 5px no-repeat,
        linear-gradient(#fbbf24, #fbbf24) left center / 5px 2px no-repeat,
        linear-gradient(#fbbf24, #fbbf24) right center / 5px 2px no-repeat;
}

.tq-article-content .tq-weather-table .tq-weather-icon--rain {
    background:
        linear-gradient(#60a5fa, #60a5fa) 8px 18px / 2px 6px no-repeat,
        linear-gradient(#60a5fa, #60a5fa) 14px 18px / 2px 6px no-repeat,
        linear-gradient(#60a5fa, #60a5fa) 20px 18px / 2px 6px no-repeat;
}

.tq-article-content .tq-weather-table .tq-weather-icon--storm {
    background:
        linear-gradient(#f59e0b, #f59e0b) 13px 16px / 3px 8px no-repeat,
        linear-gradient(#f59e0b, #f59e0b) 16px 20px / 3px 7px no-repeat;
    transform: skewX(-8deg);
}

.tq-article-content .tq-weather-table .tq-weather-icon--snow {
    background:
        radial-gradient(circle, #93c5fd 55%, transparent 56%) 8px 18px / 5px 5px no-repeat,
        radial-gradient(circle, #93c5fd 55%, transparent 56%) 15px 18px / 5px 5px no-repeat,
        radial-gradient(circle, #93c5fd 55%, transparent 56%) 22px 18px / 5px 5px no-repeat;
}

.tq-article-content .tq-weather-table .tq-weather-icon--wind::before {
    left: 2px;
    top: 8px;
    width: 24px;
    height: 2px;
    background: #60a5fa;
    box-shadow: 0 6px 0 0 #93c5fd, 4px 12px 0 0 #cbd5e1;
}

.tq-article-content .tq-weather-table .tq-weather-icon--wind::after {
    display: none;
}

.tq-article-content .tq-weather-table .tq-weather-icon--fog {
    background:
        linear-gradient(#cbd5e1, #cbd5e1) 2px 18px / 24px 2px no-repeat,
        linear-gradient(#cbd5e1, #cbd5e1) 5px 22px / 20px 2px no-repeat;
}

.tq-province-district-groups {
    display: grid;
    gap: 0;
    background: #fff;
}

.tq-province-district-group + .tq-province-district-group {
    border-top: 1px solid #e3e3e3;
}

.tq-province-district-row {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 12px 0;
}

.tq-province-district-title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.7;
    text-align: center;
}

.tq-province-district-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
}

.tq-province-district-link {
    color: var(--tq-text);
    line-height: 1.85;
    white-space: nowrap;
    text-decoration: underline;
}

.tq-province-district-link:hover,
.tq-province-city-row:hover {
    color: #1d4ed8;
}

.tq-city-page {
    display: grid;
    gap: 18px;
}

.tq-city-page .tq-breadcrumb {
    margin-bottom: 0;
    color: #8b8b8b;
    font-size: 13px;
}

.tq-city-page .tq-breadcrumb a,
.tq-city-page .tq-breadcrumb strong {
    color: #8b8b8b;
}

.tq-city-page .tq-panel-title,
.tq-city-page .tq-province-section-title,
.tq-city-page .tq-district-mixhead,
.tq-city-page .tq-tag-tabs-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    padding-left: 0;
    border-left: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--tq-text);
}

.tq-city-page .tq-panel-title::before,
.tq-city-page .tq-province-section-title::before,
.tq-city-page .tq-district-mixhead::before,
.tq-city-page .tq-tag-tabs-title::before {
    content: "";
    width: 4px;
    height: 20px;
    border-radius: 2px;
    background: #2b78ff;
    box-shadow: none;
    flex: 0 0 auto;
}

.tq-city-page .tq-district-airline {
    margin-top: 14px;
}

.tq-city-page .tq-district-airline strong {
    min-width: 160px;
    padding: 0 16px;
    justify-content: center;
}

.tq-city-page #tq-air .tq-aqi-score,
.tq-city-page #tq-air .tq-aqi-score span,
.tq-city-page #tq-air .tq-aqi-score strong,
.tq-city-page #tq-air .tq-aqi-score em,
.tq-city-page #tq-air .tq-aqi-summary,
.tq-city-page #tq-air .tq-aqi-tags span:not(.tq-aqi-badge),
.tq-city-page #tq-air .tq-aqi-tip {
    color: #111827;
}

.tq-spot-page #tq-air .tq-district-mixhead,
.tq-spot-page #tq-air .tq-aqi-score,
.tq-spot-page #tq-air .tq-aqi-score span,
.tq-spot-page #tq-air .tq-aqi-score strong,
.tq-spot-page #tq-air .tq-aqi-score em,
.tq-spot-page #tq-air .tq-aqi-summary,
.tq-spot-page #tq-air .tq-aqi-tags span:not(.tq-aqi-badge),
.tq-spot-page #tq-air .tq-aqi-tip,
.tq-spot-page #tq-air .tq-tip-item,
.tq-spot-page #tq-air .tq-tip-item strong {
    color: #111827;
}

.tq-city-side-links {
    display: grid;
    gap: 10px;
}

.tq-city-side-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid var(--tq-border);
    border-radius: 10px;
    background: #fff;
    color: var(--tq-text);
}

.tq-city-side-link strong {
    font-size: 14px;
    line-height: 1.4;
}

.tq-city-side-link span {
    color: var(--tq-muted);
    font-size: 12px;
    line-height: 1.4;
    white-space: nowrap;
}

.tq-district-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(450px, 1.04fr);
    gap: 4px;
    margin-bottom: 18px;
}

.tq-district-overview,
.tq-district-weekcard {
    background: #fff;
    border: 1px solid var(--tq-border);
    border-radius: 12px;
    padding: 20px 22px;
}

.tq-district-overview {
    display: flex;
    flex-direction: column;
}

.tq-district-page .tq-district-overview {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.tq-district-heading {
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.tq-district-showcase {
    display: grid;
    grid-template-columns: minmax(340px, 1.1fr) minmax(0, 0.9fr);
    gap: 20px;
    align-items: stretch;
}

.tq-district-showcase-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 20px;
    border: 1px solid var(--tq-border);
    border-radius: 16px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.tq-district-hero-figure {
    margin: 0;
}

.tq-district-hero-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--tq-border);
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
}

.tq-district-hero-figure figcaption {
    margin-top: 10px;
    color: var(--tq-muted);
    font-size: 12px;
    line-height: 1.6;
    padding: 8px 12px;
    border-radius: 10px;
    background: #f8fafc;
}

.tq-district-title {
    margin: 0;
    font-size: 26px;
    line-height: 1.3;
}

.tq-district-date,
.tq-district-summary,
.tq-district-meta,
.tq-district-airline span,
.tq-district-sharecopy p {
    color: var(--tq-muted);
}

.tq-district-current {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
}

.tq-district-current-icon {
    width: 92px;
    text-align: center;
}

.tq-district-current-icon i {
    font-size: 74px;
    color: #3f3f46;
}

.tq-district-current-temp {
    font-size: 76px;
    line-height: 1;
    font-weight: 300;
    color: #222;
}

.tq-district-current-temp span {
    font-size: 26px;
    vertical-align: top;
}

.tq-district-current-side {
    display: grid;
    gap: 8px;
}

.tq-district-current-side strong {
    font-size: 22px;
    line-height: 1.3;
}

.tq-district-current-side span {
    font-size: 18px;
    color: #2f2f2f;
}

.tq-district-meta {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    line-height: 1.8;
}

.tq-district-summary {
    margin: 10px 0 14px;
    line-height: 1.8;
}

.tq-district-airline {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: auto;
}

.tq-district-airline strong {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    border-radius: 8px;
}

.tq-district-airline strong.tq-week-aqi-excellent {
    background: #1fa463;
    color: #fff;
}

.tq-district-airline strong.tq-week-aqi-good {
    background: #e4c61a;
    color: #fff;
}

.tq-district-airline strong.tq-week-aqi-light {
    background: #f28c28;
    color: #fff;
}

.tq-district-airline strong.tq-week-aqi-medium {
    background: #e84d3c;
    color: #fff;
}

.tq-district-airline strong.tq-week-aqi-heavy {
    background: #8e44ad;
    color: #fff;
}

.tq-district-airline strong.tq-week-aqi-severe {
    background: #7e0023;
    color: #fff;
}

.tq-district-weekhead {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.tq-district-weekhead .tq-panel-title {
    margin-bottom: 0;
}

.tq-district-weeklist {
    position: relative;
    border: 1px solid var(--tq-border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.tq-district-weekgrid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0;
    position: relative;
    z-index: 2;
}

.tq-district-weekitem {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-height: 344px;
    padding: 22px 8px 18px;
    background: transparent;
    text-align: center;
    border-right: 1px solid var(--tq-border);
}

.tq-district-weekitem:last-child {
    border-right: 0;
}

.tq-district-weekitem span,
.tq-district-weekitem small {
    color: var(--tq-muted);
}

.tq-district-weekitem strong {
    font-size: 13px;
    line-height: 1.2;
    white-space: nowrap;
}

.tq-district-weekitem span {
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
}

.tq-district-weekitem i {
    font-size: 22px;
    color: #333;
    line-height: 1;
}

.tq-district-weekitem em,
.tq-district-weekitem u {
    font-style: normal;
    text-decoration: none;
}

.tq-district-weekitem em {
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 1.5;
}

.tq-district-weekitem u {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 22px;
    padding: 0 4px;
    border-radius: 6px;
    font-size: 12px;
    line-height: 22px;
    margin-top: auto;
    white-space: nowrap;
}

.tq-district-weekchart {
    position: absolute;
    left: 0;
    right: 0;
    top: 172px;
    height: 148px;
    z-index: 1;
    pointer-events: none;
}

.tq-district-weekchart-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.tq-district-line {
    fill: none;
    stroke-width: 0.45;
}

.tq-district-line-high {
    stroke: #f0b04b;
}

.tq-district-line-low {
    stroke: #86bff3;
}

.tq-district-dot {
    stroke-width: 0;
}

.tq-district-dot-high {
    fill: #f0b04b;
    stroke: #f0b04b;
}

.tq-district-dot-low {
    fill: #86bff3;
    stroke: #86bff3;
}

.tq-district-point {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.tq-district-point-high {
    background: #f0b04b;
}

.tq-district-point-low {
    background: #86bff3;
}

.tq-district-tempmark {
    position: absolute;
    transform: translate(-50%, -50%);
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
}

.tq-district-tempmark-high {
    color: #f0b04b;
    margin-top: -12px;
}

.tq-district-tempmark-low {
    color: #86bff3;
    margin-top: -12px;
}

.tq-week-aqi-excellent {
    background: #1fa463;
    color: #fff;
}

.tq-week-aqi-good {
    background: #e4c61a;
    color: #fff;
}

.tq-week-aqi-light {
    background: #f28c28;
    color: #fff;
}

.tq-week-aqi-medium {
    background: #e84d3c;
    color: #fff;
}

.tq-week-aqi-heavy {
    background: #8e44ad;
    color: #fff;
}

.tq-week-aqi-severe {
    background: #7e0023;
    color: #fff;
}

.tq-district-mainrow {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(260px, 0.85fr);
    gap: 18px;
    margin-bottom: 18px;
}

.tq-district-hourpanel,
.tq-district-sharepanel {
    margin-bottom: 0;
}

.tq-district-hourpanel {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.tq-district-hourpanel > .tq-province-section-title {
    margin-bottom: 14px;
}

.tq-district-sharepanel {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.tq-district-sharepanel > .tq-province-section-title {
    margin-bottom: 14px;
}

.tq-district-hourly-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 0;
    border: 1px solid var(--tq-border);
    border-bottom: 0;
    border-right: 0;
}

.tq-district-houritem {
    min-height: 118px;
    padding: 8px 6px;
    background: #fff;
    border-right: 1px solid var(--tq-border);
    border-bottom: 1px solid var(--tq-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.tq-district-houritem i {
    font-size: 20px;
    color: #333;
}

.tq-district-houritem span,
.tq-district-houritem small:not(.tq-district-houraqi) {
    color: #4b5563;
    font-weight: 400;
}

.tq-district-houritem strong {
    font-size: 12px;
    font-weight: 400;
}

.tq-district-houritem b {
    font-size: 13px;
    font-weight: 400;
}

.tq-district-houritem span,
.tq-district-houritem small:not(.tq-district-houraqi) {
    font-size: 12px;
}

.tq-district-houraqi {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 6px;
    line-height: 22px;
}

.tq-district-sharecopy {
    display: grid;
    gap: 14px;
}

.tq-district-sharecopy p {
    margin: 0;
    line-height: 1.9;
}

.tq-district-nearby-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.tq-district-nearby-link {
    color: var(--tq-text);
    line-height: 1.9;
    white-space: nowrap;
}

.tq-city-district-panel {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.tq-city-district-panel > .tq-city-district-head {
    margin-bottom: 14px;
}

.tq-city-district-panel > .tq-province-section-title {
    margin-bottom: 14px;
}

.tq-city-district-head {
    display: block;
}

.tq-city-district-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tq-city-district-weather-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    background: #fff;
}

.tq-city-district-weather-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 44px;
    padding: 12px 10px;
    border: 1px solid #e5e7eb;
    background: transparent;
    color: var(--tq-text);
    transition: color .2s ease;
}

.tq-city-district-weather-item strong {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
    white-space: nowrap;
    flex: 0 0 auto;
}

.tq-city-district-weather-meta {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    color: #1f2937;
    font-size: 14px;
    line-height: 1.6;
    white-space: nowrap;
    flex: 0 0 auto;
}

.tq-city-district-weather-meta .tq-weather-icon {
    width: 18px;
    height: 18px;
    font-size: 16px;
    color: #111827;
}

.tq-city-district-weather-item:hover {
    color: #1d4ed8;
}

.tq-city-district-weather-item--extra {
    display: none;
}

.tq-city-district-weather-item--more {
    justify-content: center;
    align-items: center;
    color: #374151;
    cursor: pointer;
    text-align: center;
    padding: 10px 12px;
}

.tq-city-district-weather-item--more strong {
    font-weight: 400;
}

.tq-city-district-toggle-close {
    display: none;
}

.tq-city-district-weather-more-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1px solid #9ca3af;
    border-radius: 999px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1;
    transition: transform .2s ease;
}

.tq-city-district-toggle:checked ~ .tq-city-district-weather-grid .tq-city-district-weather-item--extra {
    display: flex;
}

.tq-city-district-toggle:checked ~ .tq-city-district-weather-grid .tq-city-district-toggle-open {
    display: none;
}

.tq-city-district-toggle:checked ~ .tq-city-district-weather-grid .tq-city-district-toggle-close {
    display: inline;
}

.tq-city-district-toggle:checked ~ .tq-city-district-weather-grid .tq-city-district-weather-more-icon {
    transform: rotate(45deg);
}

.tq-letter-group + .tq-letter-group {
    margin-top: 18px;
}

.tq-letter-title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
}

.tq-search-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tq-search-input {
    flex: 1;
    min-width: 240px;
    padding: 12px 14px;
    border: 1px solid var(--tq-border);
    border-radius: 10px;
}

.tq-search-button {
    padding: 12px 18px;
    border: 0;
    border-radius: 10px;
    background: var(--tq-primary);
    color: #fff;
    cursor: pointer;
}

.tq-search-meta {
    margin-top: 14px;
    color: var(--tq-muted);
}

.tq-search-results {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.tq-search-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid var(--tq-border);
    border-radius: 10px;
    background: #fafafa;
    color: var(--tq-text);
}

.tq-search-item strong {
    display: block;
    margin-bottom: 4px;
}

.tq-search-item span,
.tq-search-item em,
.tq-search-empty {
    color: var(--tq-muted);
    font-style: normal;
}

.tq-search-empty {
    margin-top: 16px;
    padding: 14px 16px;
    border: 1px dashed var(--tq-border);
    border-radius: 10px;
    background: #fff;
}

.tq-search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tq-search-tag {
    padding: 10px 14px;
    border: 1px solid var(--tq-border);
    border-radius: 999px;
    background: #f8fbff;
    color: var(--tq-text);
    line-height: 1.4;
}

.tq-tag-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 18px;
}

.tq-tag-link {
    display: inline-block;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--tq-text);
    font-size: 13px;
    line-height: 1.8;
    white-space: nowrap;
    transition: color .2s ease;
}

.tq-tag-link:hover {
    color: #1d4ed8;
}

.tq-tag-tabs-panel {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.tq-city-page .tq-tag-tabs-panel .tq-tag-links,
.tq-district-page .tq-tag-tabs-panel .tq-tag-links,
.tq-forecast15-weaoo-page .tq-tag-tabs-panel .tq-tag-links {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 10px 14px;
    align-items: stretch;
}

.tq-city-page .tq-tag-tabs-panel .tq-tag-link,
.tq-district-page .tq-tag-tabs-panel .tq-tag-link,
.tq-forecast15-weaoo-page .tq-tag-tabs-panel .tq-tag-link {
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tq-tag-tabs-panel > .tq-tag-tabs-title {
    margin-bottom: 14px;
}

.tq-tag-tabs-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--tq-text);
}

.tq-tag-tabs-title::before {
    content: "";
    width: 4px;
    height: 20px;
    border-radius: 2px;
    background: #2b78ff;
    flex: 0 0 auto;
}

.tq-tag-tab-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tq-tag-tab-heads {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: -1px;
}

.tq-tag-tab-head {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    min-height: 34px;
    padding: 0 16px;
    border-radius: 6px 6px 0 0;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.4;
    cursor: pointer;
    background: transparent;
    transition: color .2s ease, background-color .2s ease;
}

.tq-tag-tab-bodies {
    border: 1px solid #e5e7eb;
    background: #fff;
    padding: 14px 10px 10px;
}

.tq-tag-tab-body {
    display: none;
}

.tq-tag-tab-radio:first-of-type:checked ~ .tq-tag-tab-heads .tq-tag-tab-head--hot,
.tq-tag-tab-radio:nth-of-type(2):checked ~ .tq-tag-tab-heads .tq-tag-tab-head--recent,
.tq-tag-tab-radio:nth-of-type(2):checked ~ .tq-tag-tab-heads .tq-tag-tab-head--city,
.tq-tag-tab-radio:nth-of-type(3):checked ~ .tq-tag-tab-heads .tq-tag-tab-head--province,
.tq-tag-tab-radio:nth-of-type(3):checked ~ .tq-tag-tab-heads .tq-tag-tab-head--district,
.tq-tag-tab-radio:nth-of-type(4):checked ~ .tq-tag-tab-heads .tq-tag-tab-head--spot {
    background: #2b78ff;
    color: #fff;
}

.tq-tag-tab-radio:first-of-type:checked ~ .tq-tag-tab-bodies .tq-tag-tab-body--hot,
.tq-tag-tab-radio:nth-of-type(2):checked ~ .tq-tag-tab-bodies .tq-tag-tab-body--recent,
.tq-tag-tab-radio:nth-of-type(2):checked ~ .tq-tag-tab-bodies .tq-tag-tab-body--city,
.tq-tag-tab-radio:nth-of-type(3):checked ~ .tq-tag-tab-bodies .tq-tag-tab-body--province,
.tq-tag-tab-radio:nth-of-type(3):checked ~ .tq-tag-tab-bodies .tq-tag-tab-body--district,
.tq-tag-tab-radio:nth-of-type(4):checked ~ .tq-tag-tab-bodies .tq-tag-tab-body--spot {
    display: block;
}

.tq-empty-box {
    padding: 14px 16px;
    border: 1px dashed var(--tq-border);
    border-radius: 10px;
    background: #fff;
    color: var(--tq-muted);
}

.tq-spot-page {
    display: grid;
    gap: 18px;
}

.tq-spot-page .tq-breadcrumb {
    margin-bottom: 0;
    color: #8b8b8b;
    font-size: 13px;
}

.tq-spot-page .tq-breadcrumb a,
.tq-spot-page .tq-breadcrumb strong {
    color: #8b8b8b;
}

.tq-spot-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(460px, 1fr);
    gap: 18px;
    align-items: start;
}

.tq-spot-hero-main {
    display: grid;
    gap: 18px;
}

.tq-spot-hero-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.tq-spot-location {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tq-spot-location span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 12px;
    line-height: 1.5;
    white-space: nowrap;
}

.tq-spot-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tq-spot-hero-side {
    display: grid;
    gap: 12px;
    align-content: start;
}

.tq-spot-nearby-panel {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.tq-spot-nearby-panel .tq-spot-links {
    gap: 10px 16px;
}

.tq-spot-nearby-panel .tq-spot-link {
    display: inline;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--tq-text);
}

.tq-spot-nearby-panel .tq-spot-link:hover {
    color: var(--tq-text);
    border-color: transparent;
    background: transparent;
    text-decoration: underline;
}

.tq-spot-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
}

.tq-spot-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid var(--tq-border);
    border-radius: 999px;
    background: #f8fbff;
    color: var(--tq-text);
    font-size: 14px;
    line-height: 1.4;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}

.tq-spot-link:hover {
    color: #1d4ed8;
    border-color: #bfdbfe;
    background: #fff;
}

.tq-spot-city-groups {
    display: grid;
    gap: 16px;
}

.tq-spot-city-group {
    padding-top: 4px;
}

.tq-spot-city-group + .tq-spot-city-group {
    padding-top: 16px;
    border-top: 1px solid var(--tq-border);
}

.tq-spot-city-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.tq-spot-city-head strong {
    font-size: 18px;
    line-height: 1.4;
    color: var(--tq-text);
}

.tq-spot-city-head a {
    color: #2563eb;
    font-size: 13px;
    line-height: 1.6;
    white-space: nowrap;
}

.tq-spot-directory {
    padding: 2px 0 12px;
}

.tq-spot-directory-title {
    margin: 0 0 12px;
    text-align: center;
    font-size: 28px;
    line-height: 1.5;
    font-weight: 700;
    color: #1f2937;
}

.tq-spot-directory-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4px 16px;
    margin-bottom: 16px;
    padding: 0 4px;
}

.tq-spot-directory-nav a {
    color: #333;
    font-size: 13px;
    line-height: 1.8;
}

.tq-spot-directory-nav a:hover {
    color: #1d4ed8;
}

.tq-spot-directory-groups {
    display: grid;
    gap: 10px;
}

.tq-spot-directory-section {
    scroll-margin-top: 84px;
}

.tq-spot-directory-province {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.4;
    color: #111827;
    text-align: left;
}

.tq-spot-directory-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    background: #fff;
    border: 1px solid #e5e7eb;
}

.tq-spot-directory-table tr {
    border: 1px solid #e5e7eb;
}

.tq-spot-directory-table th,
.tq-spot-directory-table td {
    padding: 8px 10px;
    border: 1px solid #e5e7eb;
    vertical-align: middle;
}

.tq-spot-directory-table th {
    width: 74px;
    text-align: center;
    background: #fbfbfb;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
    color: #333;
}

.tq-spot-directory-table td {
    font-size: 13px;
    line-height: 1.9;
    color: #333;
    text-align: center;
}

.tq-spot-directory-empty {
    text-align: center;
    color: #6b7280;
    background: #fff;
}

.tq-spot-directory-table th a,
.tq-spot-directory-table td a {
    color: #333;
}

.tq-spot-directory-table th a:hover,
.tq-spot-directory-table td a:hover {
    color: #1d4ed8;
}

.tq-footer-friends-bar {
    margin-top: -8px;
}

.tq-footer-friends-bar .tq-container {
    padding: 18px 24px;
    border: 1px solid var(--tq-border);
    border-radius: 16px;
    background: #fff;
}

.tq-footer {
    margin-top: -32px;
    padding: 16px 0 36px;
    border-top: 0;
    background: #eef3f9;
    color: var(--tq-muted);
}

.tq-footer .tq-container {
    padding: 0 24px;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.tq-footer-minimal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 18px;
    text-align: center;
}

.tq-footer-title {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    color: var(--tq-text);
}

.tq-footer-text {
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
    max-width: none;
}

.tq-footer-nav a,
.tq-footer-nav span,
.tq-footer-module-links a {
    color: var(--tq-text);
}

.tq-footer-nav a:hover,
.tq-footer-module-links a:hover {
    color: #2563eb;
}

.tq-footer-friends {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--tq-border);
}

.tq-footer-friends > .tq-footer-links-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--tq-text);
}

.tq-footer-friends > .tq-footer-links-title::before {
    content: "";
    width: 4px;
    height: 20px;
    border-radius: 2px;
    background: #2b78ff;
    flex: 0 0 auto;
}

.tq-footer-module-links,
.tq-footer-module-links ul,
.tq-footer-module-links ol,
.tq-footer-module-links p {
    margin: 0;
}

.tq-footer-module-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
}

.tq-footer-module-links ul,
.tq-footer-module-links ol {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    padding: 0;
    list-style: none;
}

.tq-footer-module-links li {
    margin: 0;
    list-style: none;
}

.tq-footer-module-links p,
.tq-footer-module-links div,
.tq-footer-module-links span {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
}

.tq-footer-module-links br {
    display: none;
}

.tq-footer-module-links a {
    display: inline;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--tq-text);
    font-size: 13px;
    line-height: 1.8;
}

.tq-footer-copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
    font-size: 13px;
    line-height: 1.8;
    text-align: center;
}

.tq-footer-beian {
    color: #6b7280;
}

.tq-footer-beian--public {
    color: #6b7280;
}

.tq-footer-contact {
    color: #6b7280;
}

.tq-pagebar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tq-pagebar a {
    padding: 8px 12px;
    border: 1px solid var(--tq-border);
    border-radius: 8px;
    background: #fff;
}

.tq-pagebar a.active {
    background: var(--tq-primary);
    border-color: var(--tq-primary);
    color: #fff;
}

.tq-aqi-page {
    display: grid;
    gap: 18px;
}

.tq-aqi-page .tq-breadcrumb {
    margin-bottom: 0;
    color: #8b8b8b;
    font-size: 13px;
}

.tq-aqi-page .tq-breadcrumb a,
.tq-aqi-page .tq-breadcrumb strong {
    color: #8b8b8b;
}

.tq-aqi-overview {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
    gap: 18px;
}

.tq-aqi-overview-main,
.tq-aqi-overview-side {
    display: grid;
    gap: 16px;
}

.tq-aqi-pagehead,
.tq-aqi-focus-card,
.tq-aqi-summary-strip,
.tq-aqi-band-grid,
.tq-aqi-sync-note {
    background: #fff;
    border: 1px solid var(--tq-border);
    border-radius: 12px;
}

.tq-aqi-pagehead {
    padding: 24px;
    display: grid;
    gap: 14px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.tq-aqi-pagehead-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
}

.tq-aqi-pagehead h1 {
    margin: 0;
    font-size: 32px;
    line-height: 1.25;
}

.tq-aqi-pagehead p,
.tq-aqi-province-head p,
.tq-aqi-side-note,
.tq-aqi-footnote-text p {
    margin: 0;
    color: var(--tq-muted);
    font-size: 14px;
    line-height: 1.9;
}

.tq-aqi-summary-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
}

.tq-aqi-summary-item {
    padding: 18px 20px;
    border-right: 1px solid var(--tq-border);
}

.tq-aqi-summary-item:last-child {
    border-right: 0;
}

.tq-aqi-summary-item strong {
    display: block;
    margin-bottom: 6px;
    color: #111827;
    font-size: 30px;
    line-height: 1;
}

.tq-aqi-summary-item span {
    color: var(--tq-muted);
    font-size: 13px;
    line-height: 1.6;
}

.tq-aqi-band-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    padding: 14px;
}

.tq-aqi-band-item {
    display: grid;
    gap: 4px;
    padding: 12px 10px;
    border: 1px solid #e6edf7;
    border-radius: 10px;
    background: #fbfdff;
    text-align: center;
}

.tq-aqi-band-item:nth-child(1) {
    background: #e9f8ef;
    border-color: #7ad0a0;
}

.tq-aqi-band-item:nth-child(2) {
    background: #fff8cf;
    border-color: #ead95a;
}

.tq-aqi-band-item:nth-child(3) {
    background: #ffedd9;
    border-color: #f7b36d;
}

.tq-aqi-band-item:nth-child(4) {
    background: #ffe2de;
    border-color: #f29d95;
}

.tq-aqi-band-item:nth-child(5) {
    background: #f2e3f9;
    border-color: #c99ae0;
}

.tq-aqi-band-item:nth-child(6) {
    background: #f7dde7;
    border-color: #d894a8;
}

.tq-aqi-band-item b {
    color: #111827;
    font-size: 16px;
    line-height: 1.3;
}

.tq-aqi-band-item span {
    color: var(--tq-muted);
    font-size: 12px;
    line-height: 1.5;
}

.tq-aqi-focus-card {
    padding: 18px;
}

.tq-aqi-focus-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.tq-aqi-focus-head strong {
    font-size: 18px;
    line-height: 1.4;
}

.tq-aqi-focus-head span,
.tq-aqi-focus-meta p,
.tq-aqi-focus-info span,
.tq-aqi-sync-note,
.tq-aqi-province-meta span {
    color: var(--tq-muted);
    font-size: 13px;
    line-height: 1.7;
}

.tq-aqi-focus-body {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
}

.tq-aqi-focus-meta {
    display: grid;
    gap: 10px;
}

.tq-aqi-focus-meta p {
    margin: 0;
}

.tq-aqi-focus-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
}

.tq-aqi-sync-note {
    padding: 12px 16px;
}

.tq-aqi-top-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 18px;
}

.tq-aqi-table-panel,
.tq-aqi-side-panel,
.tq-aqi-index-panel,
.tq-aqi-province-panel,
.tq-aqi-footnote {
    padding: 18px 20px;
}

.tq-aqi-table-wrap {
    overflow-x: auto;
}

.tq-aqi-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    background: #fff;
}

.tq-aqi-table th,
.tq-aqi-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #edf2f7;
    font-size: 13px;
    line-height: 1.7;
    text-align: left;
    vertical-align: middle;
}

.tq-aqi-table th {
    color: #6b7280;
    font-weight: 700;
    background: #f8fafc;
}

.tq-aqi-table th:nth-child(1),
.tq-aqi-table td:nth-child(1),
.tq-aqi-table th:nth-child(3),
.tq-aqi-table td:nth-child(3),
.tq-aqi-table th:nth-child(6),
.tq-aqi-table td:nth-child(6),
.tq-aqi-table th:nth-child(7),
.tq-aqi-table td:nth-child(7) {
    text-align: center;
}

.tq-aqi-table td a {
    color: #111827;
}

.tq-aqi-table td a:hover,
.tq-aqi-detail-link:hover {
    color: #2563eb;
}

.tq-aqi-table-value {
    color: #111827;
    font-size: 18px;
    line-height: 1;
}

.tq-aqi-level-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1.4;
}

.tq-aqi-hot-list {
    display: grid;
    gap: 10px;
}

.tq-aqi-hot-item {
    display: grid;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid var(--tq-border);
    border-radius: 10px;
    color: var(--tq-text);
    background: #fff;
}

.tq-aqi-hot-item:hover {
    border-color: #bfdbfe;
    color: #2563eb;
}

.tq-aqi-hot-item strong {
    font-size: 15px;
    line-height: 1.5;
}

.tq-aqi-hot-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.tq-aqi-hot-main b {
    font-size: 24px;
    line-height: 1;
    color: #111827;
}

.tq-aqi-hot-item small {
    color: var(--tq-muted);
    font-size: 12px;
    line-height: 1.6;
}

.tq-aqi-side-note {
    margin-top: 12px;
}

.tq-aqi-index-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
}

.tq-aqi-index-group {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 12px;
}

.tq-aqi-index-inline a {
    color: #374151;
    font-size: 13px;
    line-height: 1.9;
}

.tq-aqi-index-inline a:hover {
    color: #1d4ed8;
}

.tq-aqi-province-list {
    display: grid;
    gap: 18px;
}

.tq-aqi-province-panel {
    scroll-margin-top: 84px;
}

.tq-aqi-province-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.tq-aqi-province-titlebox {
    display: grid;
    gap: 6px;
}

.tq-aqi-province-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 10px;
}

.tq-aqi-province-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f8fafc;
}

.tq-aqi-detail-link {
    color: #2563eb;
    font-size: 13px;
    line-height: 1.6;
}

.tq-aqi-footnote-text {
    display: grid;
    gap: 10px;
}

@media (max-width: 1200px) {
    .tq-article-layout {
        grid-template-columns: minmax(0, 1fr) 300px;
    }

    .tq-article-title {
        font-size: 28px;
    }

    .tq-aqi-summary-strip,
    .tq-aqi-band-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tq-aqi-top-layout {
        grid-template-columns: 1fr;
    }

    .tq-home-province-hero-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .tq-home-province-panel .tq-link-grid {
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }

    .tq-seo-blocks-panel .tq-seo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tq-spot-seo-blocks-panel .tq-seo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .tq-home-hero,
    .tq-home-grid,
    .tq-article-hero,
    .tq-article-layout,
    .tq-detail-hero,
    .tq-weather-hero,
    .tq-district-mixlayout,
    .tq-spot-hero,
    .tq-aqi-overview,
    .tq-aqi-top-layout {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

    .tq-home-hero {
        gap: 0;
    }

    .tq-home-hero-left {
        padding: 4px 18px 12px;
        gap: 6px;
    }

    .tq-home-hero-city h1 {
        font-size: 19px !important;
    }

    .tq-home-hero-main-info {
        gap: 14px;
    }

    .tq-home-hero-main-info-icon {
        width: 48px;
        height: 48px;
        border-radius: 10px;
    }

    .tq-home-hero-main-info-icon i {
        font-size: 38px;
    }

    .tq-home-hero-main-info-text {
        gap: 8px;
        flex-wrap: wrap;
    }

    .tq-home-hero-main-info-temp {
        font-size: 44px;
    }

    .tq-home-hero-main-info-temp span {
        font-size: 22px;
    }

    .tq-home-hero-main-info-cond {
        font-size: 20px;
    }

    .tq-home-hero-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .tq-home-hero-detail-item {
        font-size: 14px;
        padding: 8px 10px;
        gap: 3px;
    }

    .tq-home-hero-detail-item b {
        font-size: 12px;
    }

    .tq-home-hero-detail-item span {
        font-size: 16px;
    }

    .tq-home-hero-right {
        width: 100%;
        border-left: 0;
        border-top: 2px dashed rgba(255, 255, 255, 0.3);
    }

    .tq-home-hero-forecast-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tq-home-forecast-item {
        padding: 14px 10px;
        gap: 8px;
    }

    .tq-home-forecast-item:nth-child(odd) {
        border-left: 0;
    }

    .tq-home-forecast-day,
    .tq-home-forecast-temp,
    .tq-home-forecast-cond {
        white-space: nowrap;
    }

    .tq-header-top-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-start;
        gap: 10px;
        padding: 10px 0;
    }

    .tq-header-top-nav {
        gap: 8px;
        justify-content: flex-start;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        padding-bottom: 2px;
        -webkit-overflow-scrolling: touch;
    }

    .tq-header-top-nav a {
        flex: 0 0 auto;
    }

    .tq-header-top-nav a + a::before {
        margin-right: 6px;
    }

    .tq-seo-blocks-panel .tq-seo-grid {
        grid-template-columns: 1fr;
    }

    .tq-spot-seo-blocks-panel .tq-seo-grid {
        grid-template-columns: 1fr;
    }

    .tq-header-panel {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 14px 16px;
    }

    .tq-logo {
        font-size: 36px;
    }

    .tq-header-search {
        max-width: none;
    }

    .tq-header-search .tq-search-input {
        min-width: 0;
    }

    .tq-header-brief {
        justify-items: start;
        min-width: 0;
    }

    .tq-header-brief-main,
    .tq-header-brief-meta {
        justify-content: flex-start;
    }

    .tq-header-brief-main {
        flex-wrap: wrap;
        white-space: normal;
        row-gap: 4px;
    }

    .tq-header-brief-region,
    .tq-header-brief-temp,
    .tq-header-brief-range,
    .tq-header-brief-text {
        white-space: normal;
    }

    .tq-article-title {
        font-size: 24px;
    }

    .tq-article-shell {
        padding: 12px 0 0;
    }

    .tq-article-hero,
    .tq-article-card--content,
    .tq-article-sidecard {
        padding-left: 0;
        padding-right: 0;
    }

    .tq-article-summary {
        font-size: 14px;
    }

    .tq-article-card--section {
        padding: 18px;
    }

    .tq-article-sidecard {
        padding: 14px;
        border-radius: 12px;
    }

    .tq-article-action {
        min-height: 40px;
    }

    .tq-article-link-chip {
        min-height: 34px;
        padding: 0 11px;
    }

    .tq-article-link-grid,
    .tq-article-related-grid,
    .tq-article-nav-grid {
        grid-template-columns: 1fr;
    }

    .tq-article-sidebar {
        position: static;
        top: auto;
    }

    .tq-article-content {
        max-width: none;
        font-size: 16px;
        line-height: 1.95;
    }

    .tq-article-content h2 {
        margin-top: 34px;
        gap: 10px;
        padding: 10px 12px;
        font-size: 22px;
    }

    .tq-article-content h2::before {
        width: 5px;
        height: 20px;
        flex-basis: 5px;
    }

    .tq-article-content h3 {
        font-size: 19px;
    }

    .tq-article-content h4 {
        font-size: 17px;
    }

    .tq-article-content p:first-child {
        font-size: 17px;
    }

    .tq-weather-lead-panel {
        border-radius: 16px;
    }

    .tq-article-content .tq-weather-data-panel {
        margin: 28px 0 24px;
        border-radius: 16px;
    }

    .tq-article-content .tq-weather-data-panel-head {
        padding: 14px 14px 10px;
    }

    .tq-article-content .tq-weather-data-panel-head p {
        font-size: 13px;
    }

    .tq-article-content .tq-weather-data-panel > .tq-weather-table-wrap {
        padding: 12px;
    }

    .tq-weather-lead-hero {
        padding: 16px 16px 18px;
    }

    .tq-weather-lead-hero-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 12px;
    }

    .tq-weather-lead-meta {
        justify-content: flex-start;
        gap: 6px 8px;
    }

    .tq-weather-lead-meta span {
        min-height: 26px;
        padding: 0 9px;
        font-size: 12px;
    }

    .tq-weather-lead-hero-body {
        grid-template-columns: minmax(0, 1fr) 72px;
        grid-template-areas:
            "temp icon"
            "side side";
        gap: 8px 10px;
        align-items: end;
    }

    .tq-weather-lead-temp {
        grid-area: temp;
    }

    .tq-weather-lead-temp strong {
        font-size: 38px;
        line-height: 1.05;
    }

    .tq-weather-lead-side {
        grid-area: side;
        gap: 8px;
    }

    .tq-weather-lead-condition {
        font-size: 18px;
    }

    .tq-weather-lead-aqi {
        min-height: 28px;
        padding: 0 10px;
        font-size: 13px;
    }

    .tq-weather-lead-current {
        font-size: 13px;
    }

    .tq-weather-lead-icon {
        grid-area: icon;
        justify-self: end;
        align-self: end;
        width: 72px;
        height: 54px;
        opacity: 0.92;
    }

    .tq-weather-lead-icon::before,
    .tq-weather-lead-icon::after,
    .tq-weather-lead-icon span::before,
    .tq-weather-lead-icon span::after {
        border-width: 4px;
    }

    .tq-weather-lead-icon::before {
        width: 28px;
        height: 28px;
        top: 14px;
        left: 6px;
    }

    .tq-weather-lead-icon::after {
        width: 36px;
        height: 36px;
        top: 7px;
        left: 20px;
    }

    .tq-weather-lead-icon span::before {
        width: 40px;
        height: 18px;
        top: 25px;
        left: 18px;
    }

    .tq-weather-lead-icon span::after {
        width: 30px;
        top: 42px;
        left: 16px;
        border-width: 0 0 4px;
        box-shadow: 14px -10px 0 0 rgba(255, 255, 255, 0.96);
    }

    .tq-weather-lead-note {
        padding: 14px 15px 16px;
    }

    .tq-weather-lead-note h3 {
        margin-bottom: 12px;
        padding-left: 10px;
        font-size: 17px;
    }

    .tq-weather-lead-note p,
    .tq-weather-lead-note-copy {
        font-size: 14px;
        line-height: 1.85;
    }

    .tq-weather-lead-note p {
        margin-bottom: 12px;
    }

    .tq-weather-lead-note-copy {
        padding-top: 12px;
    }

    .tq-article-content table {
        display: block;
        white-space: nowrap;
    }

    .tq-article-content .tq-weather-table-wrap {
        overflow-x: visible;
    }

    .tq-article-content .tq-weather-table {
        display: table;
        width: 100%;
        min-width: 0;
        table-layout: fixed;
        white-space: normal;
    }

    .tq-article-content .tq-weather-table td,
    .tq-article-content .tq-weather-table th {
        padding: 8px 6px;
        font-size: 12px;
        line-height: 1.5;
        white-space: normal;
        word-break: break-word;
    }

    .tq-article-content .tq-weather-table--forecast td,
    .tq-article-content .tq-weather-table--forecast th {
        padding: 7px 5px;
        font-size: 11px;
        text-align: center;
        vertical-align: middle;
        white-space: nowrap;
        word-break: keep-all;
    }

    .tq-article-hourly-block .tq-weather-table--hourly tbody {
        grid-template-columns: 1fr;
        gap: 12px;
        border: 0;
        border-radius: 0;
        overflow: visible;
        background: transparent;
    }

    .tq-article-hourly-block .tq-weather-table--hourly tr {
        gap: 10px 10px;
        padding: 14px 12px 12px;
        border-radius: 16px;
        box-shadow: 0 10px 22px rgba(37, 99, 235, 0.08);
    }

    .tq-article-hourly-block .tq-weather-table--hourly .tq-weather-col-time,
    .tq-article-hourly-block .tq-weather-table--hourly .tq-weather-col-weather,
    .tq-article-hourly-block .tq-weather-table--hourly .tq-weather-col-temp,
    .tq-article-hourly-block .tq-weather-table--hourly .tq-weather-col-tag {
        text-align: center;
    }

    .tq-article-hourly-block .tq-weather-table--hourly .tq-weather-col-time {
        padding: 6px 9px;
        font-size: 11px;
    }

    .tq-article-hourly-block .tq-weather-table--hourly .tq-weather-col-temp {
        font-size: 20px;
    }

    .tq-article-hourly-block .tq-weather-table--hourly .tq-weather-col-weather {
        gap: 5px;
    }

    .tq-article-hourly-block .tq-weather-table--hourly .tq-weather-icon {
        width: 30px;
        height: 24px;
    }

    .tq-article-hourly-block .tq-weather-table--hourly .tq-weather-text {
        font-size: 13px;
    }

    .tq-weather-table-wrap {
        margin: 22px 0 28px;
    }

    .tq-article-content--weather .tq-weather-table--hourly tbody {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .tq-article-content--weather .tq-weather-table--hourly tr {
        padding: 10px 8px;
        border-radius: 12px;
    }

    .tq-article-content--weather .tq-weather-table--forecast {
        padding: 10px;
        border-radius: 16px;
    }

    .tq-article-content--weather .tq-weather-table--forecast tbody {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .tq-article-content--weather .tq-weather-table--forecast tr {
        padding: 14px 8px;
        border: 1px solid #dbe7f3;
        border-radius: 12px;
    }

    .tq-article-content .tq-weather-table td,
    .tq-article-content .tq-weather-table th {
        padding: 12px 10px;
        font-size: 13px;
    }

    .tq-district-mixblock-indices .tq-daily-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tq-now-card {
        width: 100%;
        min-width: 0;
    }

    .tq-home-province-panel .tq-link-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .tq-home-city-group {
        grid-template-columns: 1fr;
        gap: 8px;
    }



    .tq-home-card-title-row {
        flex-wrap: nowrap;
        align-items: center;
        gap: 8px;
        margin-bottom: 10px;
    }

    .tq-home-card-title {
        min-width: 0;
        font-size: 15px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .tq-home-card-update {
        flex: 0 0 auto;
        font-size: 12px;
        white-space: nowrap;
    }

    .tq-home-current-card {
        gap: 10px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .tq-home-current-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
    }

    .tq-home-current-region {
        display: flex;
        align-items: center;
        gap: 8px;
        min-width: 0;
    }

    .tq-home-current-region strong {
        display: block;
        min-width: 0;
        font-size: 20px;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .tq-home-current-update {
        flex: 0 0 auto;
        font-size: 12px;
        color: var(--tq-muted);
        white-space: nowrap;
    }

    .tq-home-current-range {
        flex: 0 0 auto;
        justify-self: auto;
        min-height: 28px;
        padding: 0 8px;
        font-size: 12px;
    }

    .tq-home-current-main {
        display: grid;
        grid-template-columns: minmax(0, 72px) 36px minmax(0, 1fr);
        gap: 8px;
        align-items: center;
    }

    .tq-home-current-temp {
        font-size: 36px;
        white-space: nowrap;
    }

    .tq-home-current-temp span {
        font-size: 15px;
    }

    .tq-home-current-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .tq-home-current-icon i {
        font-size: 20px;
    }

    .tq-home-current-summary {
        gap: 2px;
    }

    .tq-home-current-summary strong,
    .tq-home-current-summary span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .tq-home-current-summary strong {
        font-size: 16px;
        line-height: 1.2;
    }

    .tq-home-current-summary span {
        font-size: 12px;
        line-height: 1.3;
    }

    .tq-home-current-meta {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 6px;
        margin-bottom: 10px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 2px;
        font-size: 12px;
        -webkit-overflow-scrolling: touch;
    }

    .tq-home-current-meta span {
        display: inline-flex;
        align-items: center;
        min-height: 24px;
        padding: 0 8px;
        border-radius: 999px;
        background: #f3f6fb;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .tq-home-current-days {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
        padding-top: 10px;
    }

    .tq-home-current-day {
        gap: 2px;
    }

    .tq-home-current-day em,
    .tq-home-current-day span {
        font-size: 11px;
        white-space: nowrap;
    }

    .tq-home-current-day i {
        font-size: 15px;
    }

    .tq-home-current-day strong {
        max-width: 100%;
        font-size: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .tq-footer .tq-container {
        padding: 18px 16px;
    }

    .tq-footer-grid {
        grid-template-columns: 1fr;
    }

    .tq-footer-copy {
        justify-content: flex-start;
    }


    .tq-home-city-links {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tq-forecast15-item {
        grid-template-columns: 1fr;
    }

    .tq-forecast15-temp {
        justify-content: flex-start;
    }

    .tq-forecast15-hero,
    .tq-forecast15-stats {
        grid-template-columns: 1fr;
    }

    .tq-forecast15-content-row,
    .tq-forecast15-content-main {
        grid-template-columns: 1fr;
    }

    .tq-forecast15-share-panel {
        display: none;
    }

    .tq-forecast15-simple-scroll {
        overflow: visible;
    }

    .tq-forecast15-simple-grid {
        grid-template-columns: 1fr;
    }

    .tq-forecast15-simple-item {
        grid-template-columns: repeat(7, minmax(0, auto));
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        padding: 12px 10px;
        text-align: left;
    }

    .tq-forecast15-simple-item strong,
    .tq-forecast15-simple-item span,
    .tq-forecast15-simple-item em,
    .tq-forecast15-simple-item b,
    .tq-forecast15-simple-item u,
    .tq-forecast15-simple-item small {
        display: block;
        white-space: nowrap;
    }

    .tq-forecast15-directory-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tq-forecast15-current {
        flex-wrap: wrap;
    }

    .tq-forecast15-side-item {
        grid-template-columns: 1fr;
        justify-items: flex-start;
    }

    .tq-forecast15-side-grid {
        min-width: 560px;
    }

    .tq-aqi-panel {
        grid-template-columns: 1fr;
    }

    .tq-breadcrumb {
        gap: 6px;
    }

    .tq-list-title {
        font-size: 14px;
        gap: 8px;
    }

    .tq-list-title::before {
        width: 5px;
        height: 15px;
    }

    .tq-list-card-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .tq-list-card-main {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 16px 0;
    }

    .tq-list-card-weather {
        grid-template-columns: 42px minmax(0, 1fr);
        min-height: 102px;
        max-width: 196px;
        padding: 18px 14px 16px;
    }

    .tq-list-card-range {
        font-size: 20px;
    }

    .tq-list-card-weather-icon {
        width: 42px;
        height: 42px;
    }

    .tq-list-card-weather-icon i {
        font-size: 30px;
    }

    .tq-list-card-condition {
        font-size: 14px;
    }

    .tq-list-card-title {
        font-size: 19px;
    }

    .tq-list-card-meta span + span::before {
        margin-right: 8px;
    }

    .tq-search-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .tq-province-national-grid,
    .tq-province-city-list,
    .tq-aqi-summary-strip,
    .tq-aqi-band-grid {
        grid-template-columns: 1fr;
    }

    .tq-aqi-focus-body {
        grid-template-columns: 1fr;
    }

    .tq-aqi-summary-item {
        border-right: 0;
        border-bottom: 1px solid var(--tq-border);
    }

    .tq-aqi-summary-item:last-child {
        border-bottom: 0;
    }

    .tq-aqi-hot-main,
    .tq-aqi-province-head,
    .tq-aqi-province-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .tq-aqi-table {
        min-width: 680px;
    }

    .tq-province-district-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .tq-province-district-title {
        text-align: left;
    }

    .tq-district-hero,
    .tq-district-mainrow {
        grid-template-columns: 1fr;
    }

    .tq-district-showcase {
        grid-template-columns: 1fr;
    }

    .tq-district-hero,
    .tq-district-mainrow,
    .tq-district-mixlayout,
    .tq-district-showcase,
    .tq-aqi-panel,
    .tq-district-overview,
    .tq-district-weekcard-plain,
    .tq-district-mixblock,
    .tq-district-mixside,
    .tq-aqi-main {
        min-width: 0;
    }

    .tq-district-weekcard-plain,
    .tq-district-mixblock,
    .tq-district-mixside,
    .tq-aqi-score,
    .tq-aqi-main {
        width: 100%;
    }

    .tq-district-airline strong,
    .tq-city-page .tq-district-airline strong {
        min-width: 0;
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }

    .tq-district-airline span,
    .tq-aqi-summary,
    .tq-aqi-tags span:not(.tq-aqi-badge),
    .tq-aqi-tip,
    .tq-tip-item {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .tq-city-side-link,
    .tq-city-district-weather-item {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .tq-city-side-link span,
    .tq-city-district-weather-item strong,
    .tq-city-district-weather-meta,
    .tq-district-nearby-link,
    .tq-spot-location span {
        white-space: normal;
    }

    .tq-city-district-weather-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tq-city-district-weather-meta {
        justify-content: flex-start;
    }

    .tq-district-current {
        flex-wrap: wrap;
    }

    .tq-district-current-icon {
        width: auto;
    }

    .tq-district-current-icon i {
        font-size: 56px;
    }

    .tq-district-current-temp {
        font-size: 56px;
    }

    .tq-district-current-temp span {
        font-size: 22px;
    }

    .tq-district-current-side strong {
        font-size: 18px;
    }

    .tq-district-current-side span {
        font-size: 15px;
    }

    .tq-spot-hero-head {
        flex-direction: column;
    }

    .tq-district-showcase-body {
        padding: 16px;
    }

    .tq-district-hero-image {
        min-height: auto;
    }

    .tq-district-weeklist {
        overflow-x: auto;
    }

    .tq-district-weekgrid {
        min-width: 560px;
    }

    .tq-district-hourly-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .tq-home-province-hero-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
