.weather-background{
    background-size: 100% 100% !important;
    background-repeat: no-repeat !important;
    color: #fff;
}
.current-weather i, .hourly-weather i{
    font-style: normal;
}
.weather-header, .current-weather{
    text-shadow: 2px 2px 5px #666;
}

/*组件头部：城市名称、更新时间*/
.weather-header{
    padding-left: 20px;
    text-align: left;
}
.weather-header .cityName{
    height: 36px;
    line-height: 36px;
    font-size: 20px;
    font-weight: normal;
}
.weather-header .updateTime{
    display: block;
    font-size: 12px;
}

/*当前天气*/
.current-weather{
    text-align: left;
    padding: 20px 25px 8px;
}
/*当前天气-温度*/
.current-weather .weather-temp span{
    display: inline-block;
}
.current-weather .weather-temp .currentTemp{
    font-size: 70px;
}
.current-weather .weather-temp .dailyTemp i{
    display: block;
    font-size: 26px;
}
/*当前天气-状况*/
.current-weather .weather-info{
    overflow: hidden;
}
.current-weather .weather-info .weather-icon img{
    width: 46px;
    vertical-align: middle;
}
.current-weather .weather-info .weather-information, .current-weather .weather-info .weather-icon{
    float: left;
}
.current-weather .weather-info .weather-information p{
    height: 23px;
    line-height: 23px;
    font-size: 13px;
    padding-left: 12px;
}
.current-weather .weather-info .weather-information .weather-description{
    text-transform: capitalize;
}

/*天气数据来源*/
.dataProvider{
    font-size: 10px;
    color: #e6e4e4;
    height: 36px;
    line-height: 36px;
}