@charset "utf-8";
/* CSS Document */

#fixed-nav {
	display: none;
}

#fixed-nav-pc {
	animation: pcNavIn 0.8s linear 0s 1 normal;
	-webkit-animation: pcNavIn 0.8s linear 0s 1 normal;
	position: fixed;
	top: 65%;
	right: 0;
	transform: translate(0,-50%);
	height: 420px;
	z-index: 999;
}
@keyframes pcNavIn {
	0% {
		opacity: 0;
		right: -50px;
	}
	100% {
		opacity: 1;
		right: 0;
	}
}
@-webkit-keyframes pcNavIn {
	0% {opacity: 0}
	100% {opacity: 1}
}
#fixed-nav-pc ul {
	padding: 0;
	margin: 0;
}
#fixed-nav-pc ul li {
	position: relative;
	top: 0;
	left: 0;
	list-style: none;
	display: block;
	height: 140px;
	width: 60px;
	box-sizing: border-box;
	font-size: 12px;
	color: rgba(4,61,131,1);
}
#fixed-nav-pc ul li span {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	padding: 0 2px;
	box-sizing: border-box;
	transform: translate(0,-50%);
	line-height: 1.2;
	text-align: center;
}
#fixed-nav-pc ul li a {
	display: block;
	width: 100%;
	height: 100%;
	color: rgba(4,61,131,1);
}
#fixed-nav-pc ul li i {
	font-size: 20px;
	margin-bottom: 10px;
}
#fixed-nav-pc ul li img {
	display: inline-block;
	width: 25px;
	height: auto;
	margin-bottom: 10px;
}
#fixed-nav-pc ul li:nth-of-type(1) {
	border: 1px solid rgba(118,170,204,1);
	border-bottom: none;
	background-color: rgba(255,255,255,1);
}
#fixed-nav-pc ul li:nth-of-type(2) {
	border: 1px solid rgba(118,170,204,1);
	background-color: rgba(235,250,255,1);
}
#fixed-nav-pc ul li:nth-of-type(3) {
	border: 1px solid rgba(31,73,154,1);
	background-color: rgba(31,73,154,1);
}
#fixed-nav-pc ul li:nth-of-type(3) i {
	margin-right: 3px;
}
#fixed-nav-pc ul li:nth-of-type(3) a {
	color: rgba(255,255,255,1);
}

@media only screen and (max-width:767px){
	#fixed-nav-pc {
		display: none;
	}

	#fixed-nav {
		display: block;
		position: fixed;
		width: 100%;
		bottom: 0;
		z-index: 200;
	}
	#fixed-nav ul li a {
		font-size: 10px;
	}
	#fixed-nav ul {
		padding: 0;
		margin: 0;
		font-size: 0;
	}
	#fixed-nav ul:after {
		clear: both;
	}
	#fixed-nav ul li {
		position: relative;
		top: 0;
		left: 0;
		list-style: none;
		display: block;
		float: left;
		height: 50px;
		width: 33.33%;
		box-sizing: border-box;
		font-size: 10px;
		color: rgba(4,61,131,1);
	}
	#fixed-nav ul li span {
		position: absolute;
		top: 50%;
		left: 0;
		width: 100%;
		padding: 0 2px;
		box-sizing: border-box;
		transform: translate(0,-50%);
		line-height: 1.2;
		text-align: center;
	}
	#fixed-nav ul li a {
		display: block;
		width: 100%;
		height: 100%;
		color: rgba(4,61,131,1);
	}
	#fixed-nav ul li i {
		font-size: 20px;
	}
	#fixed-nav ul li:nth-of-type(1) {
		border: 1px solid rgba(118,170,204,1);
		border-right: none;
		background-color: rgba(255,255,255,0.9);
	}
	#fixed-nav ul li:nth-of-type(1) i {
		margin-right: 4px;
	}
	#fixed-nav ul li:nth-of-type(2) {
		border: 1px solid rgba(118,170,204,1);
		background-color: rgba(230,245,250,0.9);
	}
	#fixed-nav ul li:nth-of-type(2) i {
		margin-left: 4px;
	}
	#fixed-nav ul li:nth-of-type(3) {
		border: 1px solid rgba(11,95,158,1);
		background-color: rgba(31,73,154,0.9);
	}
	#fixed-nav ul li:nth-of-type(3) i {
		margin-right: 3px;
	}
	#fixed-nav ul li:nth-of-type(3) a {
		color: rgba(255,255,255,1);
	}


