/**
 * 文档栏目CSS
 * @时间 2022年3月6日
**/

.nav_wrap {
	height: 100vh;
	width: 290px;
	padding-top: 90px;
	padding-bottom: 10px;
	box-sizing: border-box;
	overflow: hidden;
	position: fixed;
	left: 0px;
	top: 0px;
	background-color: #FFFFFF;
	border-right: 1px solid #EEEEEE;
}

.nav_wrap li {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

.nav_ul {
	height: 100%;
	width: 310px;
	margin: 0px;
	padding: 0px;
	overflow-y: auto;
	overflow-x: hidden;
}

.nav_ul2 {
	padding: 10px 0;
}

li.li_1 {
	padding: 6px 50px 6px 20px;
	box-sizing: border-box;
	font-size: 16px;
}

li.li_2 {
	padding: 6px 50px 6px 40px;
	box-sizing: border-box;
	font-size: 15px;
	position: relative;
}

li.li_2 a {
	color: var(--moniz-gray);
}

li.li_2.active a,
li.li_2 a:hover {
	color: var(--danger);
	font-weight: bold;
}

li.li_2.active::before {
	position: absolute;
	display: block;
	content: "";
	left: 0px;
	top: 0px;
	width: 2px;
	height: 100%;
	background-color: var(--danger);
}

.help-box {
	padding: 0 300px 0 350px;
}

.help-note {
	padding: 20px 0;
}

.help-box h3 {
	color: var(--danger);
	font-weight:bold;
}

.help-note p {
	padding: 10px 0;
	font-size: 15px;
	line-height: 30px;
	color: var(--greytwo);
}

.help-content p {
	margin-bottom: 0px;
	font-size: 15px;
	line-height: 30px;
	color: var(--moniz-gray);
}

.help-content b {
	font-size: 18px;
	color: var(--danger);
}

.help-content h3 {
	margin-bottom: 30px;
	font-size: 24px;
	font-weight: bold;
}

.help-content table td,
.help-content table th {
	border: 1px #eee solid;
	padding: 8px 10px;
	line-height: 1.6;
}

.help-content thead {
	background-color: var(--greytwo);
	color: #FFFFFF;
}

.help-content table td h4 {
	font-weight: bold;
	font-size: 20px;
}

.download-list a {
	background-color: #f5f5f5;
	border: 1px solid #ddd;
	padding: 5px 20px;
	border-radius: 3px;
	margin-right: 10px;
	margin-bottom: 15px;
	font-size: 14px;
	transition: all 0.3s;
	display: inline-block;
}

.download-list a:hover {
	color: #FFFFFF;
	background-color: var(--danger);
	border-color: var(--danger);
}


/* 锚点定位 */
#nav {
	left: 30px;
	top: 120px;
	list-style: none;
	padding: 0px;
	margin: 0px;
	position: fixed;
	z-index: 99;
	border-left: 1px #eee solid;
	width: 220px;
	max-height: 80%;
	overflow-y: auto;
}

#nav li {
	margin-bottom: 2px;
}

#nav a {
	color: #666;
	display: block;
	font-size: 14px;
	padding: 8px 0px 8px 30px;
	text-decoration: none;
	text-transform: uppercase;
	position: relative;
	transition: all 0.3s;
}

#nav a::before {
	transition: all 0.3s;
	display: block;
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	width: 1px;
	height: 0px;
}

#nav a:hover::before,
#nav .current a::before {
	height: 100%;
	background-color: var(--danger);
}

#nav .current a,
#nav a:hover {
	color: var(--danger);
}

.section {
	padding-top: 100px;
}

.section p:last-child {
	margin-bottom: 0;
}

.user_list2 .hide1 {
	display: none;
}
