/* CSS Document */
/*==导航样式==*/
/*通用页面导航*/
.nav {
	position: fixed;
	top: 0;
	width: 100%;
	text-align: center;
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
	z-index: 10;
}
.nav .logo{
	position: relative;
	float: left;
	margin-top: 10px;
	margin-left: 6%;
 }
.nav .logo img{
	height: 40px;
}
.nav .layui-nav{
	height: 60px;
	background-color: rgba(255,103,0,0.8);
}
.nav .layui-nav .layui-nav-item a{
	font-size: 16px;
	font-weight: normal;
	color: #333333;
	text-shadow: 0 1px 1px #000;
}
.nav .layui-nav a:hover{
	 color: #222222 !important;
 }
.nav .layui-nav .layui-nav-child{
	background-color: rgba(255,103,0,0.80);
	border-radius: 8px;
	border: none;
}
.nav .layui-nav .layui-nav-child a:hover{
	background-color: rgba(255,255,255,0.5);
}

@media (max-width: 1300px) {
	.nav .logo img {
		left: 30px;
	}
}
/*1000px以下（手机）导航*/
.nav-phone {
	position: relative;
	width: 100%;
	height: 120px;
	background-color: rgba(225,103,0,0.80);
	box-shadow: 0 14px 20px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
	z-index: 15;
}
.nav-phone .logo {
	position: relative;
	float: left;
	text-align: left;
	left: 30px;
	top: 30px;
}
.nav-phone .button {
	position: relative;
	float: right;
	right: 60px;
	top: 35px;
}
.nav-phone .button .layui-nav{
	background-color:  rgba(255,255,255,0);
}
.nav-phone .button  .layui-nav-item i{
	font-size: 60px;
	font-weight: bold;
	color: #ffffff;
}
.nav-phone .button .layui-nav-child{
	top: 100px;
	left: -55px;
	background-color: rgba(225,103,0,0.80);
	border: 0;
	border-radius: 10px;
}
.nav-phone .button .layui-nav-item .layui-nav-child a{
	color: #ffffff;
	font-size: 24px;
	font-weight: bold;
	text-shadow: 0 1px 1px #333;
	margin: 10px 20px;
	padding: 5px 10px;
	border-radius: 8px;
}
.nav-phone .button .layui-nav-item .layui-nav-child dd a:hover{
	color: #000000;
	background-color: rgba(255,255,255,0.5);
}

/*手机导航隐藏*/
@media (min-width: 1080px) {
.nav-phone {
	display: none;
}
}

/*普通导航隐藏*/
@media (max-width: 1080px) {
.nav, .nav-bg {
	display: none;
}
}
/*==右侧导航==*/

/*右侧功能栏
.side-bar a, .chat-tips i {
	background: url(https://cdn.luwin.cn/image/public/rightbg.webp) no-repeat;
}*/
.side-bar {
	width: 60px;
	position: fixed;
	bottom: 50px;
	right: 30px;
	z-index: 16;
}
.side-bar a{
	display: block;
	width: 60px;
	height: 60px;
}
.side-bar a:hover{
	color: #ffffff;
	background-color: rgba(0,147,253,0.80);
	border-radius: 18px;
}
.side-bar a i{
	font-size: 30px;
}
.side-bar a:hover i{
	font-size: 38px;
}
/*鼠标经过显示二维码*/
.side-bar a:hover .chat-tips {
	display: block;
}

.chat-tips {
	padding: 20px;
	border: 1px solid #d1d2d6;
	position: absolute;
	right: 78px;
	top: 0;
	background-color: #fff;
	display: none;
	border-radius: 8px;
}
.chat-tips img {
	width: 138px;
	height: 138px;
}

/*==底部↓==*/

/*链接*/
.footer{
	width: 100%;
	background-color: #333333;
}
.bottom {
	display: grid;
	margin: 0 auto;
	width: 90%;
	grid-template-columns: repeat(auto-fit, minmax(100px, 2fr));
}
.bottom ul {
	margin: 80px auto;
}
.bottom ul li {
	margin: 0 auto 20px;
}
.bottom ul li a {
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	padding: 8px;
	text-shadow: 0 1px 1px #333;
}
.bottom ul li:hover a {
	background-color: rgba(225,225,225,0.3);
	border-radius: 3px;
}
.bottom p {
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	text-shadow: 0 1px 1px #333;
}
.ewm {
	padding-top: 80px;
	padding-bottom: 10px;
}
.bottom h2 {
	color: #fff;
	text-shadow: 0 1px 1px #666666;
}
.copy {
	margin: 0 auto;
	background-color: #dddddd;
}
.copy ul {
	width: 95%;
}
.copy ul li {
	line-height: 30px;
	font-size: 14px;
	font-weight: 500;
	color: #000;
	margin-right: 10px;
	display: inline;
}
