html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	/* font-family: "楷体","楷体_GB2312"; */
}

html {
	background: #000;
	background-image: url(../images/bg3.png);
	background-attachment: fixed;
	background-size: 100% 100%;
}

body {
	opacity: 0.9;
}

ol, ul, li {
	list-style: none;
	padding: 0;
	margin: 0;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

th, td {
	vertical-align: middle;
}

/* custom */

a {
	outline: none;
	color: inherit;
	text-decoration: none;
	-webkit-backface-visibility: hidden;
}

a:focus {
	outline: none;
}

input:focus, select:focus, textarea:focus {
	outline: -webkit-focus-ring-color auto 0;
}

.search {
	width: 1000px;
	margin: 50px auto 0;
	padding: 20px;
	background: #fff;
	box-sizing: border-box;
	border-radius: 3px;
}

.search .search-input {
	display: flex;
	background: #F2F2F2;
	align-items: center;
	height: 40px;
}

.search .search-input .search-icon {
	width: 5%;
	padding-right: 10px;
	padding-left: 15px;
	box-sizing: border-box;
	height: 20px;
}

.search .search-input .search-icon img {
	height: 20px;
	width: 20px;
}

.search .search-input .keyword {
	width: 85%;
	padding: 0;
	border: none;
	border-right: none;
	box-sizing: border-box;
	font-size: 16px;
	background: #F2F2F2;
}

.search .search-input .search-name {
	width: 10%;
	text-align: center;
	font-size: 24px;
	cursor: pointer;
	color: #8590a6;
	text-shadow: 0 1px 0 #fff;
}

.search .search-input .search-name:hover {
	color: #000;
}

.search .search-list {
	background: #FFF;
	position: relative;
	display: flex;
	font-size: 0;
}

.search .search-list-content {
	height: 30px;
}

.search .search-list .search-item {
	padding: 0 15px;
	text-align: center;
	color: #6c757d;
	line-height: 30px;
	display: inline-block;
	cursor: pointer;
	height: 30px;
	vertical-align: bottom;
	background: transparent;
	z-index: 20;
	position: relative;
	width: 80px;
	box-sizing: border-box;
	font-size: 16px;
}

.search .search-list .anchor {
	background: #F2F2F2;
	position: absolute;
	z-index: 10;
	transition: 0.2s ease;
	left: 0;
}

.site-collection {
	width: 1000px;
	margin: 20px auto 0;
	display: flex;
	position: relative;
}

.site-collection .left {
	width: 15%;
	width: 150px;
	display: flex;
	align-items: center;
	flex-flow: column;
	border-radius: 2px;
	background: #fff;
	padding: 10px 0;
	height: min-content;
}

.site-collection .left .left-item {
	width: 100%;
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 10px 10px 10px 20px;
	box-sizing: border-box;
	line-height: 22px;
	transform: scale(1);
	transition: 0.3s;
}

.site-collection .left .left-item:hover {
	background: #F2F2F2;
	transform: scale(1.1);
}

.site-collection .left .left-item .item-icon {
	width: 22px;
	height: 22px;
	padding-right: 10px;
	padding-top: 2px;
}

.site-collection .left .left-item .item-name {
	font-size: 16px;
	color: #555;
}

.site-collection .right {
	width: 83%;
	width: 830px;
	align-items: center;
	flex-flow: column;
	margin-left: 20px;
}

.site-collection .right .right-block {
	padding: 10px 10px 0;
	border-radius: 2px;
	background: #fff;
	margin-bottom: 20px;
}

.site-collection .right .block-content {
	display: flex;
	align-items: center;
	flex-flow: wrap;
}

.site-collection .right .block-title {
	padding-bottom: 5px;
	font-size: 18px;
	border-bottom: 1px solid #ebebeb;
	margin-bottom: 10px;
}

.site-collection .right .block-content .item {
	width: 25%;
	height: 40px;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	cursor: pointer;
	padding-left: 20px;
	box-shadow: 0 0 0 #fff;
	position: relative;
	top: 0;
	transition: 0.3s ease;
	margin-bottom: 10px;
}

.site-collection .right .block-content .item>a {
	height: 40px;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	cursor: pointer;
	color: #000;
	width: 100%;
}

.site-collection .right .block-content .item:hover {
	box-shadow: 0 3px 15px #ccc;
	top: -5px;
}

.site-collection .right .block-content .item .item-icon {
	height: 30px;
	margin-right: 10px;
}

.site-collection .right .block-content .item .item-name {
	line-height: 40px;
}

.site-collection .back-top {
	position: fixed;
	right: 80px;
	bottom: 0px;
	color: #fff;
	font-size: 50px;
	cursor: pointer;
	transition: 0.3s;
	visibility: hidden;
	opacity: 0;
}

.site-collection .back-top.hidden {
	visibility: hidden;
	opacity: 0;
}

.site-collection .back-top.show {
	visibility: visible;
	opacity: 1;
	bottom: 20px;
}

.site-collection .back-top:hover {
	color: #ccc;
}
.license{
	width: 1000px;
    display: block;
    text-align: center;
    margin: 0 auto;
    color: #bbb;
    padding-bottom: 10px;
    font-size: 14px;
}