
.zx-day-rain{
    display:flex;
    align-items:center;
    justify-content:center;
    gap: 5px;
}

.zx-weather-card{
    background:#fff;
    border-radius:6px;
    padding:20px;
    border: 1px solid #f5f7f9;

    width:100%;
    max-width:100%;
    box-sizing:border-box;
}


.zx-weather-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.zx-city{
    font-size:13px;
    color:#666;
    margin-bottom:10px;
    white-space: nowrap;
}

.zx-temp{
    font-size:32px;
    line-height:1;
    font-weight:700;
    color:#111827;
}

.zx-status{
    margin-top:10px;
    color:#666;
    font-size:15px;
}

.zx-icon{
    font-size:64px;
    line-height:1;
}

.zx-forecast{
    display:flex;
    justify-content:space-between;
    margin-top:35px;
    gap:20px;
}

.zx-day{
    flex:1;
    text-align:center;
}

.zx-day span{
    display:block;
    color:#666;
    margin-bottom:8px;
    font-size:15px;
}

.zx-day strong{
    font-size:24px;
    color:#111827;
    font-weight:700;
}

@media(max-width:480px){

    .zx-weather-card{
        padding:20px;
    }

    .zx-temp{
        font-size:32px;
    }

    .zx-icon{
        font-size:32px;
    }

}

.zx-minmax{
    margin-top:10px;
    color:#666;
    font-size:10px;
}

.zx-minmax span{
    margin:0 6px;
}



.zx-day-name{
    display:block;
    font-size:16px;
    font-weight:600;
    color:#444;
}

.zx-day-date{
    display:block;
    font-size:12px;
    color:#999;
    margin-top:2px;
}

.zx-day-icon{
    font-size:32px;
    margin:8px 0;
}

.zx-day-temps{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:4px;
    margin-top:6px;
}

.zx-max{
    font-size:13px;
    font-weight:600;
    color:#111827;
    line-height:1.2;
}

.zx-min{
    font-size:12px;
    color:#777;
    line-height:1.2;
}

.zx-extra{
    display:flex;
    gap:15px;
    margin-top:8px;
    font-size:13px;
    color:#777;
}

.zx-hourly{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:8px;
    margin-top:25px;
    padding-top:20px;
    border-top:1px solid #eee;
}

.zx-hour{
    text-align:center;
}

.zx-hour-time{
    display:block;
    font-size:12px;
    color:#666;
}

.zx-hour-icon{
    font-size:24px;
    margin:6px 0;
}

.zx-hour-rain{
    display:block;
    font-size:11px;
    color:#3b82f6;
}

.zx-hour-temp{
    display:block;
    font-weight:600;
    margin-top:3px;
    font-size: 11px;
}

.zx-day-range{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    margin-top:6px;
}

.zx-range-bar{
    width:45px;
    height:6px;
    border-radius:10px;
    background:#e5e7eb;
    overflow:hidden;
}

.zx-range-bar span{
    display:block;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        #74d6ff,
        #ffd84d
    );
}



.zx-day-rain{
    font-size:12px;
    color:#3b82f6;
    margin-top:4px;
    margin-bottom:6px;
    font-weight:600;
}

.zx-hourly-title{
    grid-column:1 / -1;
    width:100%;
    display:block;
    margin-top:30px;
    font-size:14px;
    font-weight:700;
    color:#666;
    letter-spacing:.5px;
    color: #666;
    font-size: 15px;
}

span#zx-live-time {
    font-size: 12px;
    font-weight: 600;
}

.zx-title{
    font-size:15px;
    font-weight:700;
    color:#111827;
    line-height: 1.2;
    padding: 0;
}

.zx-weather-card p{
    margin:0;
    padding:0;
}

.mobile-only{
    display:none;
}

@media (max-width:768px){
    .mobile-only{
        display:block;
    }
}

.zx-weather-card > p:first-child{
   margin-top: -30px;
}



