/*color:#FA6E86;*/
*{
	font-family: "Microsoft YaHei"
}

html {
	height: 100%;
}

body {
	padding: 0;
	margin: 0;
	background-color: #1c1d1f;
}

.loading{
	position: fixed;
	z-index: 999999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background:#1c1d1f url(../img/icon.png) no-repeat center;
	background-size: 200px 200px;
	opacity: 1;
	transition: opacity 500ms; 
}

.nav-height {
	height: 70px;
}

.nav-bg {
	width: 100%;
	position: fixed;
	z-index: 999;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(20px);
	background-color: rgba(65, 69, 80, 0.7);
	border-bottom: 1px solid rgba(255,255,255,0.45);
}

.nav {
	margin: auto;
	width: 1100px;
}

.nav .logo {
	display: block;
	height: 40px;
	margin-left: 15px;
	margin-top: 15px;
	float: left;
}

.nav .logo-image {
	width: 40px;
	height: 40px;
	background: url(../img/icon.png) no-repeat center;
	background-size: cover;
	float: left;
	border: none;
}

.nav .logo-title {
	height: 40px;
	float: left;
	line-height: 40px;
	font-size: 23px;
	font-weight: bold;
	color: #FA6E86;
	text-decoration: none;
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.0);
	transition: all 300ms;
}

.nav .logo:hover .logo-title {
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav .nav-menu-list {
	height: 40px;
	float: right;
	margin-right: 15px;
	margin-top: 15px;
	transition: height 300ms;
}

.nav .nav-menu-list .nav-menu {
	font-size: 16px;
	font-weight: 300;
	line-height: 40px;
	margin-left: 5px;
	text-decoration: none;
	color: #fff;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0);
	transition: color 300ms, text-shadow 300ms;
}

.nav .nav-menu-list .nav-menu:hover {
	color: #fff;
	text-decoration: underline;
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.75);
}

.nav .nav-menu-list .nav-close {
	display: none;
}

.nav .nav-menu-expand {
	margin-right: 10px;
	margin-top: 10px;
	height: 30px;
	line-height: 30px;
	font-size: 20px;
	color: #fff;
	float: right;
	cursor: pointer;
	display: none;
}

.qmsg-button {
	display: inline-block;
	height: 38px;
	line-height: 38px;
	border: none;
	border-top: 1px solid rgba(255,255,255,0.6);
	border-bottom: 1px solid rgba(255,255,255,0.4);
	text-align: center;
	border-radius: 10000px;
	background-color: rgba(65,69,80,0.55);
	backdrop-filter: blur(5px);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	text-shadow: 0 0 10px rgba(0, 0, 0, 0);
	padding: 0px 18px;
	cursor: pointer;
	color: #FFF;
	font-size: 14px;
	font-weight: 300;
	text-decoration: none;
	outline: none;
	transition: all 300ms;
}

.qmsg-button:hover {
	border-top-color: rgba(255,255,255,0.75);
	border-bottom-color: rgba(255,255,255,0.55);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
	text-shadow: 0 0 15px #fff;
	backdrop-filter: blur(7px);
}

.content-box {
	width: 1100px;
	margin: auto;
	margin-top: 20px;
}

.content-box .title {
	color: #FA6E86;
	width: 100%;
	font-size: 28px;
	padding: 15px 0px;
}

.content-box .content {
	width: 100%;
}

.content-box .content-desc {
	border-top: 1px solid rgba(255,255,255,0.4);
	border-bottom: 1px solid rgba(255,255,255,0.2);
	background-color: rgba(65,69,80,0.5);
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
	font-size: 14px;
	font-weight: 300;
	color: #dadada;
	line-height: 26px;
	border-radius: 20px;
	box-sizing: border-box;
	padding: 10px;
	transition: border-color 300ms, box-shadow 300ms;
}

.content-box .content-desc:hover {
	border-top-color: rgba(255,255,255,0.5);
	border-bottom-color: rgba(255,255,255,0.3);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.content-box .content-desc .link {
	padding: 2px;
	color: #FA6E86;
	border-radius: 4px;
	text-decoration: none;
	transition: background-color 300ms, color 300ms;
}

.content-box .content-desc .link:hover {
	color: #FFF;
	background-color: #FA6E86;
}

.copyright {
	width: 100%;
	font-size: 12px;
	text-align: center;
	padding-top: 40px;
	padding-bottom: 10px;
	color: #999
}

.copyright a {
	color: #e7e7e7;
	text-decoration: none;
	font-size: 12px;
	text-shadow: 0 0 10px rgba(255,255,255,0.0);
	transition: all 300ms;
}

.copyright a:hover {
	text-shadow: 0 0 10px rgba(255,255,255,1);
	text-decoration: underline
}

.qmsgJiang {
	margin: 0 auto 40px auto;
	width: 160px;
	height: 160px;
	background: url(../img/icon.png) no-repeat center;
	background-size: cover
}

@media screen and (max-width:1140px) {
	.nav {
		width: 100%;
	}

	.content-box {
		width: 97%;
	}
}

@media screen and (max-width:660px) {
	.content-box .title {
		font-size: 25px;
	}
}

@media screen and (max-width:480px) {


	.nav-height {
		height: 50px;
	}

	.nav .logo {
		height: 30px;
		margin-left: 10px;
		margin-top: 10px;
		float: left;
	}

	.nav .logo-image {
		width: 30px;
		height: 30px;
	}

	.nav .logo-title {
		height: 30px;
		float: left;
		line-height: 30px;
		font-size: 20px;
	}

	.nav .nav-menu-list {
		width: 100%;
		height: 0px;
		float: none;
		position: fixed;
		margin-right: 0;
		margin-top: 0;
		z-index: 998;
		background-color: rgba(65, 69, 80, 0.96);
		overflow: hidden;
		text-align: center;
	}

	.nav .nav-menu-list .nav-menu {
		font-size: 18px;
		line-height: 50px;
	}

	.nav .nav-menu-list .nav-close {
		display: inline;
	}

	.nav .nav-menu-expand {
		display: block;
	}

	.content-box {
		width: 94%;
	}

	.content-box .title {
		font-size: 23px;
	}
}
