/*Dogend*/

/*编码格式*/
@charset "UTF-8";

/*全局样式*/
body{
	color: #000;
	background-color: rgba(255, 255, 255, .5);
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}
*::-webkit-scrollbar{
	display:none;
}
a:hover {
	text-decoration: none;
}
* {
	cursor: url(../imgs/horse-cursor.png),auto !important;
}

/*导航条*/
#header {
	background: rgba(0, 0, 0, .5);
	color: rgba(101, 194, 229, 1);
	padding: 20px 0;
	width: 100%;
	height: 90px;
}
#header #logo {
	float: left;
}
#header #logo img {
	padding: 0;
	margin: 0;
	max-height: 50px;
}
#header #Title { 
	float: right;
	margin: 0;
}
#header #Title h2 { 
	display: block;
	margin: 0;
}
#header #Title h5 { 
	display: none;
	margin: 0;
}
@media (max-width: 991px) {
	#header {
		height: 80px;
	}
	#header #logo img {
		max-height: 40px;
	}
	#header #Title h2 { 
		display: none;
	}
	#header #Title h5 { 
		display: block;
		position: fixed;
		right: 15px;
		top: 25px;
	}
}

/*主屏幕*/
#Main {
	min-height: calc(100vh - 10px);
	background: rgba(255, 255, 255, .4);
}

/*页脚*/
#footer {
	width: 100%;
	color: #fff;
    background: rgba(0, 0, 0, 0.5);
    font-family: "Comic Sans MS", cursive, sans-serif;
    padding: 10px 0;
    height: 65px;
    font-size: 13px;
}

#footer .copyright {
    text-align: center;
}

#footer i {
    color: #3bd03b;
}

#footer a {
    color: cyan;
}

/*返回顶部按钮*/
.back-to-top {
	position: fixed;
	display: none;
	background: rgba(0, 185, 255, 0.85);
	color: #000;
	padding: 6px 12px 9px 12px;
	font-size: 16px;
	border-radius: 2px;
	right: 15px;
	bottom: 15px;
	transition: background 0.5s;
	z-index: 11;
}
.back-to-top:focus {
	color: #fff;
	outline: none;
}
.back-to-top:hover {
	background: #03C4EB;
	color: #fff;
}