@charset "utf-8";
/* CSS Document */
/*
* * @ 516
* * _(:з」∠)_
*/

/* - head - 默认顶部 - */
.head {
	z-index: 9;
	width: 100%;
	height: calc(22rem / 1.2);
	background-image: url(/index/head-bg.jpg);
}

@media screen and (max-width: 500px) {
    .head {
		height: auto;
	}
}

/* - head-top - */
.head-top,
.navbar {
	margin: 0 auto;
	width: calc(125rem / 1.2);
}

.head-top {
	padding: calc(1.2rem / 1.2) 0;
	height: calc(12.6rem / 1.2);
}

@media screen and (max-width: 500px) {
    .head-top {
		width: 100%;
		height: auto;
	}

	.navbox {
		display: none;
	}
}

.logo {
	float: left;
	width: auto;
	height: 100%;
}

@media screen and (max-width: 500px) {
    .logo {
		float: none;
		margin: 0 auto;
		width: calc(32rem / 1.2);
		height: auto;
	}

	.logo a {
		display: inline-block;
		width: 100%;
	}

	.logo a img {
		width: 100%;
	}
}

.search {
	float: right;
	margin: calc((12.6rem / 1.2 - 2.7rem / 1.2) / 2) 0;
	width: calc(20.4rem / 1.2);
	height: calc(2.7rem / 1.2);
	border-radius: calc(1.2rem / 1.2);
	overflow: hidden;
}

@media screen and (max-width: 500px) {
    .search {
		display: none;
	}
}

.search form {
	width: 100%;
	height: 100%;
}

.search input {
	width: 100%;
	height: 100%;
	border: 0;
	text-indent: calc(1rem / 1.2);
	background-color: #fff;
}

.search input::-webkit-input-placeholder {
	color: #4c88d1;
}

.search input + i {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	width: calc(3rem / 1.2);
	height: calc(2.7rem / 1.2);
	color: #4c88d1;
	font-size: calc(1.6rem / 1.2);
	text-align: center;
	line-height: calc(2.7rem / 1.2);
	background-color: #fff;
}

.search input[type="submit"] {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	width: calc(3rem / 1.2);
	height: calc(2.7rem / 1.2);
	color: #4c88d1;
	font-size: calc(1.6rem / 1.2);
	text-align: center;
	line-height: calc(2.7rem / 1.2);
	background-image: url("../../../../images/516/image/icon/search.png");
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
}

/* - navbar - */
.toolbar {
	display: none;
	width: 100%;
	height: calc(3.6rem / 1.2);
	border-top: calc(.1rem / 1.2) solid #00135a;
	background-color: #2F74BF;
}

.openSlide {
	float: left;
	width: calc(5rem / 1.2);
	height: calc(3.6rem / 1.2);
	text-align: center;
	line-height: calc(3.6rem / 1.2);
}

.openSlide img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9;
    padding: calc(.3rem / 1.2) calc(1rem / 1.2);
    width: calc(3rem / 1.2);
    height: calc(3rem / 1.2);
}

.navbar {
	display: none;
    position: fixed;
    top: 0;
    left: -100%;
	z-index: 99;
    width: 100%;
    height: 100%;
    background: rgba(48, 48, 48, .3);
}

.closeSlide {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 99;
    width: 70%;
    height: calc(4rem / 1.2);
	line-height: calc(4rem / 1.2);
	background: rgb(48, 48, 48);
}

.closeSlide img {
    float: left;
    padding: calc(1rem / 1.2);
    width: calc(2rem / 1.2);
    height: calc(2rem / 1.2);
}

.navList {
    position: absolute;
    top: 0;
	left: 0;
	padding-top: calc(4rem / 1.2);
    width: 70%;
    height: calc(100% - 4rem / 1.2);
	background-color: rgb(48, 48, 48);
	overflow-y: auto;
}

.navList::-webkit-scrollbar {
	width: 0;
}

.navList::-webkit-scrollbar-thumb {
	width: 0;
}

.navList h,
.navList a {
    display: inline-block;
	width: 100%;
	height: calc(3.6rem / 1.2);
	color: #eee;
    line-height: calc(3.6rem / 1.2);
}

.navList-item,
.navList-child,
.navList-child-item {
    width: 100%
}

.navList-child {
    display: none;
}

.navList-item{
    padding: 0 calc(2.4rem / 1.2);
    width: calc(100% - 4.8rem / 1.2);
}

.navList-child-item {
    padding-left: calc(3rem / 1.2);
    width: calc(100% - 3rem / 1.2);
}

.slideShow {
    animation: slideShow .8s ease;
    animation-fill-mode: forwards;
}

.slideHide {
    animation: slideHide .5s ease;
    animation-fill-mode: forwards;
}

@keyframes slideShow
{
	from {left: -100%;}
	to {left: 0;}
}

@keyframes slideHide
{
	from {left: 0;}
	to {left: -100%;}
}

@media screen and (max-width: 500px) {
	.toolbar,
    .navbar {
		display: block;
	}

	.navbox {
		display: none;
	}
}