/*
.uk-flex .uk-flex-left/center/right/between/around .uk-flex-stretch/top/middle/bottom
水平垂直居中的两个方法：
uk-flex uk-flex-middle uk-flex-center 有两个套接的要用两次
uk-inline uk-position-center
*/

/*css/css3实现未知宽高元素的垂直居中和水平居中*/

/*给元素添加样式 父类要添加 position:relative; */
.ele{
	/* 设置元素绝对定位 */
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*给父级添加样式*/
.box{
    display:flex;
    justify-content: center;
    align-items: center;  
 }

/*给父级添加样式*/
 .box{  
    display:table-cell;
    text-align:center; 
    vertical-align:middle;     
} 

/*css/css3实现未知宽高元素的垂直居中和水平居中*/

.gasun-tooltip {cursor:pointer;color:black;text-decoration:underline;display:inline-block;}
.gasun-tooltip + div {display:none;}

@media screen and (orientation: portrait) {   
/*竖屏 css*/  

}    
@media screen and (orientation: landscape) {   
/*横屏 css*/  

}