﻿@charset "utf-8";
/* CSS Document */
/*省略号*/
.text-ellipsis{
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
	}
.location{
    margin-top:10px;
}
/*初始化标签*/
.ini-a{
	color:#333;
	}
.ini-a:hover{
	text-decoration:none;
	}
.ini-ul{
	padding:0;
	margin:0;
	list-style:none;
	}
/*margin自动*/
.margin-auto{
	margin:auto
	}
/*text内容方向*/
.text-center{
	text-align:center;
	}
.text-right{
	text-align:right;
	}
.text-left{
	text-align:left;
	}
.text-justify{
	text-align:justify;
	}
/*justify-content盒模型*/
.common-start{
	display:flex;
    justify-content: flex-start;
	flex-wrap:wrap;
	}
.common-end{
	display:flex;
    justify-content: flex-end;
	flex-wrap:wrap;
	}
.common-center{
	display:flex;
    justify-content: center	;
	flex-wrap:wrap;
	}
.common-between{
	display:flex;
    justify-content: space-between;
	flex-wrap:wrap;
	}
.common-around{
	display:flex;
    justify-content: space-around;
	flex-wrap:wrap;
	}
/*nav二级导航*/
#mobile-nav-btn{
	display:none;
	position:fixed;
	z-index:99999;
	bottom:100px;
	right:5px;
	background-color:rgba(0,0,0,.5);
	width:40px;
	height:40px;
	border-radius:50%;
	text-align:center;
	line-height:50px;
	}
#mobile-nav-btn:hover{
	background-color:rgb(193,136,91);
	}
.mobile-nav-list{
	display:none;
	position:fixed;
	z-index:9999;
	top:0;
	right:0;
	width:80%;
	height:100%;
	background-color:rgba(0,0,0,.8);
	padding: 0;
	list-style:none;
	overflow-y:scroll;
}
.mobile-nav-list .mobile-nav-content > a{
	display:block;
	width:100%;
	color:rgb(193,136,91);
	text-align:center;
	line-height:40px;
	font-size:14px;
	text-decoration:none;
}
.mobile-nav-list .mobile-nav-content a:hover{
	background-color:rgba(0,147,221,);
}
.mobile-nav-two-list li > a{
	display:block;
	width:100%;
	color:rgb(193,136,91);
	line-height:30px;
}
.mobile-nav-list .mobile-nav-content:hover .mobile-nav-two-list{
	display:block;
}

@media (max-width:980px){
	#mobile-nav-btn{
	display:block;
	}
}