@font-face {
  font-family: 'iconfont';
  src: url('../fonticon/iconfont.woff2?t=1758530933391') format('woff2'),
       url('../fonticon/iconfont.woff?t=1758530933391') format('woff'),
       url('../fonticon/iconfont.ttf?t=1758530933391') format('truetype');
}
.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
        }
                :root {
            --primary: #1a73e8;
            --primary-light: #4285f4;
            --primary-dark: #0d47a1;
            --secondary: #34a853;
            --accent: #fbbc05;
            --danger: #ea4335;
            --light-bg: #f8f9fa;
            --card-bg: #ffffff;
            --text-primary: #202124;
            --text-secondary: #5f6368;
            --text-light: #9aa0a6;
            --border: #dadce0;
            --shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.1);
            --gradient: linear-gradient(135deg, #1a73e8 0%, #4285f4 100%);
        }
        
        body {
            background: var(--light-bg);
            color: var(--text-primary);
            min-height: 100vh;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 16px;
        }
        
        /* 顶部导航 */
        .navbar {
            background: var(--card-bg);
            padding: 12px 0;
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo-icon {
            width: 36px;
            height: 36px;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
        }
        
        .logo-text {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
        }
        
        .nav-links {
            display: flex;
            gap: 6px;
        }
        
        .nav-link {
            padding: 8px 16px;
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            font-size: 14px;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary);
            background: rgba(26, 115, 232, 0.08);
        }
        
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .search-box {
            display: flex;
            background: var(--light-bg);
            padding: 1px 14px;
            transition: all 0.3s ease;
        }
        
        .search-box:focus-within {
            box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
        }
        
        .search-box input {
            background: transparent;
            border: none;
            outline: none;
            width: 160px;
            color: var(--text-primary);
            font-size: 14px;
        }
        
        .search-box button {
            background: transparent;
            border: none;
            color: var(--text-light);
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .search-box button:hover {
            color: var(--primary);
        }
        
        .user-actions {
            display: flex;
            gap: 8px;
        }
        
        .btn {
            padding: 8px 16px;
            border: none;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
        }
        
        .btn-primary {
            background: var(--primary);
            color: white;
        }
        
        .btn-primary:hover {
            background: var(--primary-dark);
        }
        
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }
        
        .btn-outline:hover {
            background: rgba(26, 115, 232, 0.08);
        }
        
        /* 主要内容区域 - 左右结构 */
        .main-content {
            padding: 24px 0;
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 24px;
            align-items: start;
        }
        
        /* 左侧内容区域 */
        .left-content {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        
        /* 右侧内容区域 */
        .right-content {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        
        /* 当前天气卡片 */
        .current-weather-card {
            background: var(--card-bg);
            padding: 24px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .current-weather-card:hover {
            box-shadow: var(--shadow-hover);
        }
        
        .current-weather-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient);
        }
        
        .weather-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .weather-main {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        
        .weather-icon {
            width: 80px;
            height: 80px;
            background: rgba(26, 115, 232, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: var(--primary);
        }
         .weather-icon i {font-size:50Px}
        
        .weather-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .weather-info h1 {
            font-size: 42px;
            font-weight: 300;
            color: var(--text-primary);
            line-height: 1;
        }
        
        .weather-info h2 {
            font-size: 20px;
            font-weight: 500;
            color: var(--text-secondary);
            margin-top: 6px;
        }
        
        .weather-meta {
            text-align: right;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .date {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 6px;
        }
        
        .update-time {
            font-size: 13px;
            color: var(--text-light);
        }
        
        .weather-details {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 12px;
        }
        
        .detail-card {
            background: var(--light-bg);
            padding: 16px;
            text-align: center;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .detail-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }
        
        .detail-icon {
            width: 36px;
            height: 36px;
            background: rgba(26, 115, 232, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            color: var(--primary);
            font-size: 16px;
        }
        
        .detail-label {
            font-size: 13px;
            color: var(--text-light);
            margin-bottom: 6px;
        }
        
        .detail-value {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
        }
        
        /* 生活指数区域 */
        .index-section {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        
        .index-card {
            background: var(--card-bg);
            padding: 20px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .index-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
        
        .index-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }
        
        .index-icon {
            width: 44px;
            height: 44px;
            background: rgba(26, 115, 232, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 20px;
        }
         .index-icon i {font-size:32Px}
        .index-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
        }
        
        .index-value {
            font-size: 24px;
            font-weight: 600;
            margin: 10px 0;
            color: var(--primary);
        }
        
        .index-desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
        }
        
        /* 空气质量指示器 */
        .aqi-indicator {
            height: 5px;
            background: var(--light-bg);
            margin: 10px 0;
            overflow: hidden;
            position: relative;
        }
        
        .aqi-level {
            height: 100%;
            position: relative;
            transition: width 0.5s ease;
        }
        
        .aqi-good {
            background: linear-gradient(90deg, #34a853, #57bb75);
            width: 30%;
        }
        
        .aqi-moderate {
            background: linear-gradient(90deg, #fbbc05, #f9c642);
            width: 60%;
        }
        
        .aqi-poor {
            background: linear-gradient(90deg, #ea4335, #ef6a5e);
            width: 85%;
        }
        
        /* 小时预报 */
        .hourly-section {
            background: var(--card-bg);
            padding: 24px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }
        
        .hourly-section:hover {
            box-shadow: var(--shadow-hover);
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .section-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .section-icon {
            width: 32px;
            height: 32px;
            background: rgba(26, 115, 232, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }
        
        .hourly-forecast {
            display: flex;
            overflow-x: auto;
            padding: 12px 6px;
            gap: 16px;
            scrollbar-width: thin;
            scrollbar-color: var(--primary) var(--light-bg);
        }
        
        .hourly-forecast::-webkit-scrollbar {
            height: 4px;
        }
        
        .hourly-forecast::-webkit-scrollbar-track {
            background: var(--light-bg);
        }
        
        .hourly-forecast::-webkit-scrollbar-thumb {
            background: var(--primary);
        }
        
        .hour-item {
            flex: 0 0 auto;
            text-align: center;
            padding: 12px;
            background: var(--light-bg);
            transition: all 0.3s ease;
            min-width: 80px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .hour-item i {font-size:25Px}
        .hour-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }
        
        .hour-time {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-primary);
            font-size: 14px;
        }
        
        .hour-icon {
            width: 36px;
            height: 36px;
            background: rgba(26, 115, 232, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 8px;
            color: var(--primary);
            font-size: 18px;
        }
        
        .hour-temp {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
        }
        
        /* 垂直7天预报 */
        .vertical-forecast {
            background: var(--card-bg);
            padding: 24px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }
        
        .vertical-forecast:hover {
            box-shadow: var(--shadow-hover);
        }
        
        .vertical-forecast-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .vertical-forecast-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px;
            background: var(--light-bg);
            transition: all 0.3s ease;
        }
        
        .vertical-forecast-item:hover {
            transform: translateX(3px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }
        
        .vertical-forecast-day {
            font-weight: 600;
            color: var(--text-primary);
            width: 70px;
            text-align: left;
            font-size: 14px;
        }
        
        .vertical-forecast-main {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
            justify-content: flex-start;
        }
        
        .vertical-forecast-icon {
            width: 36px;
            height: 36px;
            background: rgba(26, 115, 232, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }
        
        .vertical-forecast-desc {
            font-size: 13px;
            color: var(--text-secondary);
        }
        
        .vertical-forecast-temp {
            font-weight: 600;
            color: var(--text-primary);
            width: 70px;
            text-align: right;
            font-size: 14px;
        }
        
        /* 小工具区域 */
        .widget {
            background: var(--card-bg);
            padding: 20px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }
        
        .widget:hover {
            box-shadow: var(--shadow-hover);
        }
        
        .widget-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
            padding-bottom: 14px;
            border-bottom: 1px solid var(--border);
        }
        
        .widget-icon {
            width: 28px;
            height: 28px;
            background: rgba(26, 115, 232, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }
        
        .widget-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
        }
        
        .cities-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
        }
        
        .city-item {
            padding: 10px 14px;
            background: var(--light-bg);
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .city-item:hover {
            background: rgba(26, 115, 232, 0.08);
        }
        
        .city-name {
            font-weight: 500;
            color: var(--text-primary);
            font-size: 14px;
        }
        
        .city-weather {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .city-temp {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
        }
        
        .city-condition {
            font-size: 13px;
            color: var(--text-light);
        }
        
        /* 底部 */
        footer {
            background: var(--card-bg);
            padding: 24px 0;
            margin-top: 40px;
            border-top: 1px solid var(--border);
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-links {
            display: flex;
            gap: 20px;
        }
        
        .footer-link {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 13px;
        }
        
        .footer-link:hover {
            color: var(--primary);
        }
        
        .copyright {
            color: var(--text-light);
            font-size: 13px;
        }
        
        /* 移动端适配 */
        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .index-section {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 0 12px;
            }
            
            .nav-container {
                flex-direction: column;
                gap: 12px;
            }
            
            .nav-links {
                gap: 4px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .nav-link {
                padding: 6px 12px;
                font-size: 13px;
            }
            
            .search-box {
                width: 100%;
                margin: 8px 0;
            }
            
            .search-box input {
                width: 100%;
            }
            
            .user-actions {
                width: 100%;
                justify-content: center;
            }
            
            .weather-header {
                flex-direction: column;
                gap: 16px;
            }
            
            .weather-meta {
                text-align: left;
            }
            
            .weather-details {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .index-section {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }
            
            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .weather-details {
                grid-template-columns: 1fr;
            }
            
            .weather-main {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }
            
            .weather-info h1 {
                font-size: 36px;
            }
            
            .weather-info h2 {
                font-size: 18px;
            }
            
            .vertical-forecast-item {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
            
            .vertical-forecast-day,
            .vertical-forecast-temp {
                width: auto;
                text-align: center;
            }
            
            .vertical-forecast-main {
                justify-content: center;
            }
        }
        @media screen and (min-width: 767px) {
.content_r {padding-left:20Px}
}

.sameprovince {display:flex;flex-wrap:wrap}
.sameprovince a {margin:15Px}
.index-pro {display:flex;flex-wrap:wrap}
.index-pro .seindex {width:48%;background:#f8f8f8;margin:8Px 1%;}        
.index-pro a {padding:5Px 10Px;display:block}
.index-pro h2 {font-size:16Px}        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        





