head {
	position: relative;
}

.h-t-logo {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 70px;
	z-index: 10000;
}

.h-t-logo a.l-p {
	margin-top: 12px;
	display: inline-block;
	margin-left: 60px;
}
.fixednav {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 100000;
    background:#FFFFFF;
}
body {
	margin: 0px;
	padding: 0px;
}

.mobile-inner-header {
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	background: transparent;
}

.mobile-inner-header-icon {
	color: #ffffff;
	height: 70px;
	font-size: 25px;
	text-align: center;
	float: right;
	width: 50px;
	margin-right: 60px;
	position: relative;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}

.mobile-inner-header-icon:hover {
	cursor: pointer;
}

.mobile-inner-header-icon span {
	position: absolute;
	left: calc((100% - 25px) / 2);
	top: calc((100% - 1px) / 2);
	width: 25px;
	height: 2px;
	background-color: #a1844a;
}
.mobile-inner-bg {
	background: #FFFFFF;
}
.mobile-inner-header-icon span.s1 {
	transform: translateY(-8px) rotate(0deg);
}
.mobile-inner-header-icon span.s2 {
	transform: translateY(0px) rotate(0deg);
}
.mobile-inner-header-icon span.s3 {
	transform: translateY(8px) rotate(0deg);
}

.mobile-inner-header-icon-click span.s1 {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clickfirst;
}

.mobile-inner-header-icon-click span.s3 {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clicksecond;
}
.mobile-inner-header-icon-click span.s2 {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clickthird;
}

@keyframes clickfirst {
	0% {
		transform: translateY(-8px) rotate(0deg);
	}
	100% {
		transform: translateY(0) rotate(45deg);
	}
}

@keyframes clicksecond {
	0% {
		transform: translateY(8px) rotate(0deg);
	}
	100% {
		transform: translateY(0) rotate(-45deg);
	}
}

@keyframes clickthird {
	0% {
		opacity:1;
	}
	30%{
		opacity:0;
	}
	100% {
		opacity:0;
	}
}


@keyframes outthird {
	0% {
		opacity:0;
	}
	100% {
		opacity:1;
	}
}

.mobile-inner-nav {
	max-width: 1280px;
	margin: 0 auto;
	display: none;
	padding-top:15px;
	padding-bottom: 40px;
}

.mobile-inner-nav div {
	display: inline-block;
	width: 18%;
	vertical-align: top;
}
.mobile-inner-nav div.t{
	width:16%;
}

.mobile-inner-nav a {
	display: inline-block;
	line-height: 27px;
	text-decoration: none;
	color: #3e3a39;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	font-size: 16px;
}

.mobile-inner-nav h3 a {
	color: #a1844a;
	font-size: 22px;
	padding: 10px 0;

}
.mobile-inner-nav h3 a:hover{
	text-decoration:none;
}
.mobile-inner-nav a:hover {
	color:#a1844a;
	text-decoration:underline;
}

.mobile-inner-nav a {
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: returnToNormal;
	animation-name: returnToNormal;
}

@-webkit-keyframes returnToNormal {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes returnToNormal {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
/*。。。。。。。。。。。。。。。。。。。*/
@media screen and (max-width: 768px){
	.h-t-logo {
		position:fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 50px;
		z-index: 100000;
		background:#FFFFFF;
	}
}
