﻿

/* CSS Index */
/*顶部信息----开始--------------------------------------------------------*/
header {
	width: 100%;
	height: 1080px;
	background: url(../image/bg.png) center 0 no-repeat;
	display: flex;
	padding-top: 250px;
	margin-bottom: -440px;
	justify-content: top;
	align-items: center;
	flex-direction: column;
	box-sizing: border-box;
	position: relative;
	z-index: -1;
}

header .logo_box {
	width: 100%;
	height: 360px;
	margin: 0 auto;
	margin-bottom: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

header h1 a {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	font-size: 0;
}

header h1 a img {
	animation: logo 3s infinite ease-in-out;
}


@keyframes logo {

	0%,
	100% {
		transform: scale(1.0);
	}

	50% {
		transform: scale(0.9);
	}
}

/*顶部信息----结束--------------------------------------------------------*/

/*滚动公告----开始--------------------------------------------------------*/
.laba_box {
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	background: linear-gradient(0deg, rgba(86, 53, 87, 0.5), rgba(134, 65, 91, 0.5));
	border-radius: 30px;
	margin-bottom: 30px;
	z-index: 9999;
	padding: 0 20px;
}

.laba {
	width: 36px;
	height: 36px;
	flex-grow: 0;
	flex-shrink: 0;
	margin-left: -5px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gg_txt {
	width: 100%;
	height: 36px;
	overflow: hidden;
	border-radius: 6px;
	color: var(--sc03);
	box-sizing: border-box;
	margin: 0 10px;
}

.gg_txt ul {
	width: 100%;
	position: relative;
}

.gg_txt ul li {
	position: absolute;
	font-size: 16px;
	float: left;
	line-height: 36px;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-right: 50px;
	padding-right: 50px;
	color: var(--c06);
}

/*滚动公告----结束--------------------------------------------------------*/
/*顶部导航----开始--------------------------------------------------------*/
.nav {
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	flex-wrap: wrap;
	margin-bottom: 40px;
	position: relative;
	z-index: 9999;
}

.nav a {
	flex: 1;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin: 10px;
	margin-bottom: 10px;
	padding: 20px;
	border-radius: 20px;
	position: relative;
	background: linear-gradient(0deg, var(--sc01), var(--sc02));
	cursor: pointer;
}

.nav a i {
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}

.nav a i img {
	transition: all 0.3s;
}

.nav a:hover i img {
	transform: scale(1.1);
}

.nav a p {
	color: var(--sc04);
	white-space: nowrap;
	padding: 5px 20px;
	border-radius: 20px;
}

.nav .nav_act p {
	background: linear-gradient(0deg, var(--sc04), var(--bai));
	color: var(--sc01);
}

.nav_cent_box {
	width: 100%;
}
.nav_2,
.nav_3,
.nav_4,
.nav_5,
.nav_6 {
	display: none;
}

/*顶部导航----结束--------------------------------------------------------*/
/*手机导航----开始--------------------------------------------------------*/
.app_nav {
	position: fixed;
	width: 80px;
	height: 80px;
	background: linear-gradient(0deg, var(--sc01), var(--sc02));
	border-radius: 10px;
	top: 10px;
	right: 10px;
	padding: 20px;
	box-sizing: border-box;
	cursor: pointer;
	display: none;
	z-index: 9999;
}
.app_nav i {
	height: 6px;
	background: var(--sc03);
	display: flex;
	border-radius: 4px;
	margin: 6px auto;
}
/*手机导航----结束--------------------------------------------------------*/
/*文本不可选择*/
.laba_box {
	-moz-user-select: none;
	/* Firefox私有属性 */
	-webkit-user-select: none;
	/* WebKit内核私有属性 */
	-ms-user-select: none;
	/* IE私有属性(IE10及以后) */
	-khtml-user-select: none;
	/* KHTML内核私有属性 */
	-o-user-select: none;
	/* Opera私有属性 */
	user-select: none;
	/* CSS3属性 */
}