@charset "utf-8";
/* CSS Document */

#weather{
	width:220px; 
	height:95px; 
	float:right; 
	position:relative; 
	margin-bottom:15px; 
	font-family:'Nunito', sans-serif;
	font-weight:700;
}

#weather img{
	position:absolute; 
	top:10px; 
	left:0px; 
	z-index:1; 
	width:170px;
}

#weather div.info{
	width:110px;
	position:absolute;
	top:0px;
	left:120px;
	z-index:99;
}

/* 溫度 */
#weather .temperature{
	position:absolute;
	top:0px;
	left:0px;
	width:80px;
	color:#333;
	font-size:40px;
}
#weather .temperature span{
	font-size:24px;
	font-weight:400;
	vertical-align:10px;
}

#weather p{
	position:absolute;
	top:40px;
	left:0px;
	width:110px; 
	line-height:1em;
}
/* 氣象 */
#weather .meteorological{
	font-size:12px;
	color:#999;
}
/* 高低溫 */
#weather .high-low{
	display:none;
}
#weather strong{
	font-size:12px;	
}
#weather .high{
	color:#e72f2f;
}
#weather .low{
	color:#06C;
}
/* 城市 */
#weather .city{
	font-size:12px;
	color:#999;
}



