@charset "utf-8";

/*
 *	Created by 71nc.com on 23/03/28
*/
html {

	font-size: 16px;
	overflow-x: hidden;

}

/* 中屏（1200-1920px）：微调根字体，适配比例 */
@media (min-width: 1200px) and (max-width: 1919px) {
	html {
		font-size: calc(100vw / 120);
		/* 120=1920÷16，保证1920设计稿比例 */
	}
}

/* 小屏（<1200px）：降低根字体，优化移动端体验 */
@media (max-width: 1199px) {
	html {
		font-size: calc(100vw / 75);
		/* 75=1200÷16，适配小屏比例 */
	}
}

/* ========== 老年版：全局放大根字体 ========== */
/* 基础屏 放大根字号（示例：放大 1.3 倍，可自行调倍数） */
html.elder-mode {
	font-size: 20.8px;
	/* 16 * 1.3 = 20.8px */
}

/* 中屏 老年版 同步放大 */
@media (min-width: 1200px) and (max-width: 1919px) {
	html.elder-mode {
		/* 同样放大1.3倍 */
		font-size: calc(100vw / 120 * 1.2);
	}
}

/* 小屏 老年版 同步放大 */
@media (max-width: 1199px) {
	html.elder-mode {
		font-size: calc(100vw / 75 * 1.2);
	}
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

ul,
ol,
li {
	list-style: outside none none;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}



html,
body,
div,
span,
applet,
object,
iframe,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
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,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0px;
	border: 0;

	outline: none;
}

table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
	padding: 0px;
}

html {

	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	overflow-x: hidden;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html::-webkit-scrollbar {
	width: 8px;
	background: none;
}

html::-webkit-scrollbar-thumb {
	width: 8px;
	background: #16243d;
}

html::-webkit-scrollbar-corner {
	background: none;
}

html::-webkit-scrollbar:horizontal {
	height: 9px;
}

body {
	margin: 0 auto;
	color: #333;
	background-color: #ffffff;
	font-family: 'syhtN';
	overflow-x: hidden;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

strong {
	font-weight: bold;
}

img {
	border: 0;
}

input {
	outline: none;
	font-family: Arial, Helvetica, sans-serif;
}

input[type="text"],
input[type="button"],
input[type="submit"],
input[type="reset"] {
	-webkit-appearance: none;
	border-radius: 0;
}

textarea {
	-webkit-appearance: none;
	border-radius: 0;
	outline: none;
}

::-moz-selection {
	background: #5175fc;
	color: #fff;
	text-shadow: none;
}

::selection {
	background: #5175fc;
	color: #fff;
	text-shadow: none;
}

select {
	outline: none;
}

select::-ms-expand {
	display: none;
}



table {
	border-collapse: collapse;
}

a {
	text-decoration: none;
	cursor: pointer;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	color: #555;
}

a:link,
a:visited {
	text-decoration: none;
}

a:active,
a:hover {
	text-decoration: none;
}

.clearfix:before,
.clearfix:after {
	display: table;
	content: "";
	line-height: 0px;
}

.clearfix:after {
	clear: both;
}



@font-face {
	font-family: 'syhtB';
	src: url(../font/SourceHanSansCN-Bold.ttf);
}

@font-face {
	font-family: 'syhtN';
	src: url(../font/SourceHanSansCN-Normal.ttf);
}


ul,
ol,
li {
	list-style: outside none none;
}

a {
	text-decoration: none;
	color: #333;
}

a:hover {
	text-decoration: none;
	color: #b04b85;
}

img {
	border: none;
	max-width: 100%;
}

.clear {
	clear: both;
	display: block;
	position: relative;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.clear:after {
	content: "";
	clear: both;
	display: block;
}

.warp {
	width: 83.33%;
	margin: 0 auto;
}

.in-warp {
	width: 75%;
	margin: 0 auto;
}

/* 弹窗 */

#dialogBg {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	display: none;
}


.animated {
	-webkit-animation-duration: 1.4s;
	animation-duration: 1.4s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}

#dialog {
	width: 43.75rem;
	padding: 3.125rem;
	background: #fff;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	position: absolute;
}



.dialogTop {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 30px;
}

.claseDialogBtn {
	color: #111;
	width: 1.8rem;
	height: 1.8rem;
	top: 1.25rem;
	right: 1.25rem;
	position: absolute;
	cursor: pointer;
}

.claseDialogBtn img {
	display: block;
	width: 100%;
	transition-duration: .5s;
}

.claseDialogBtn:hover img {
	transform: rotate(90deg);
}

.tc-ss {
	width: 100%;
	margin: 0 auto;
}

.tc-ss ul .sk03 {
	width: 100%;
	font-size: 16px;
	height: 50px;
	line-height: 50px;
	vertical-align: top;
	box-sizing: border-box;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	margin-bottom: 25px
}

.tc-ss ul .sk03 input {
	width: 100%;
	background: none;
	height: 50px;
	line-height: 50px;
	font-size: 16px;
	border: none;
	outline: none;
}

.sk04 {
	height: 45px;
	text-align: right;
}

.sk04 input {
	border-radius: 0;
	background: #004097;
	color: #fff;
	font-size: 16px;
	line-height: 45px;
	height: 45px;
	vertical-align: top;
	padding: 0;
	margin: 0;
	width: 30%;
	text-align: center;
	border: none;
	outline: none;
	cursor: pointer;
}





/* top */
header {
	width: 100%;
	position: absolute;
	z-index: 9999;
	top: 0;
	left: 0;
}


.clock {
	display: flex;
	flex-wrap: wrap;
	justify-content: right;
	align-items: center;
}

.clock select {
	background: none;
	border: none;
	outline: none;
	color: #fff;
	font-size: 1.125rem;
}

/* 下拉选项文字颜色 */
#jumpMenu option {
	color: #000 !important;
	/* 选项文字黑色 */
	background: #fff !important;
}

.clock .iconfont {
	font-size: 1.625rem;
	margin: 0 0.4rem;
}

.clock .iconfont:nth-child(2),
.clock .iconfont:nth-child(3) {
	margin-left: 0.9375rem;
}

.topBox {
	width: 100%;
	background: #b04b85;
	color: #fff;


}

.topBox .HomeWarp {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 3.8125rem;
	width: 90%;
}

.topRight,
.search {
	display: flex;
	justify-content: center;
	align-items: center;
}

.search {
	width: 1.875rem;
	height: 1.875rem;
	background: #fff;
	border-radius: 50%;
	color: #333;
	margin-left: .9375rem;
}

#changeFont {
	padding-left: 1.25rem;
	font-size: 1.125rem;
	cursor: pointer;
}

.topBox p {

	line-height: 1.6;
	font-size: 1.125rem;
	width: 80%;
}

.topBox1 {
	width: 100%;
	height: 7.5rem;
	position: relative;
}

.logo {
	position: absolute;
	top: .625rem;
	left: 50%;
	transform: translateX(-55%);
	width: 12.5rem;
	display: none;
}

.logo1 {
	width: 12.5rem;
	padding-top: 1.25rem;
}

.logo img,
.logo1 img {
	display: block;
	width: 100%;
}

.search ul {
	display: flex;
	cursor: pointer;

}

.search li {
	margin-left: 1.625rem;
	color: #333;
	border-radius: 3.125rem;
	height: 2.5rem;
	line-height: 2.5rem;
	text-align: center;
}


.search li .iconfont {
	text-align: center;
	font-size: 1.8rem;
	margin-right: 0.3rem;
}

.searchBtn .iconfont {
	font-size: 2rem !important;
}


.search li a {
	color: #333;
	display: flex;
	font-size: 1.4rem;
}

footer {
	width: 100%;
	margin: 0 auto;
	background: #f0e9f9;
	position: relative;

}


.backTop {
	width: 3.6875rem;
	height: 3.625rem;
	position: absolute;
	right: 3rem;
	top: 5.3125rem;
	cursor: pointer;
}


@-webkit-keyframes tab {
	from {
		opacity: 0;
		-webkit-transform: translateY(15%);
		transform: translateY(15%);
	}

	to {
		opacity: 1;
		-webkit-transform: translateY(0%);
		transform: translateY(0%);
	}
}

@keyframes tab {
	from {
		opacity: 0;
		-webkit-transform: translateY(15%);
		transform: translateY(15%);
	}

	to {
		opacity: 1;
		-webkit-transform: translateY(0%);
		transform: translateY(0%);
	}
}

.HomeWarp {
	width: 75%;
	margin: 0 auto;
}

.addList {
	padding-top: 2.5rem;
	padding-bottom: 3.75rem;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.f-Faq {
	width: 52.5rem;
}

.f-add {
	width: 23.125rem;
}

.copyright {
	width: 100%;
	border-top: 1px solid #cecece;
}

.copyBox {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}

.copyBox .left {}

.copyBox .right {
	line-height: 4rem;
	font-size: 1.125rem;
}

.copyBox .right span {
	display: inline-block;
	padding-left: 1.25rem;
}

.f-link {
	width: 100%;
	display: flex;
	line-height: 4rem;
	font-size: 1.125rem;
}

.f-link .bit {
	padding-right: 10px;
}

.f-link .list a {

	padding-right: 2.5rem;
	font-size: 1.125rem;
}

.f-Faq .bit {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: .6875rem;
	font-weight: bold;
	color: #b04b85;
	font-family: 'syhtB';
}

.f-Faq .bit span {
	font-size: 2rem;
}

.f-FaqList {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.f-FaqList input {
	width: 45%;
	margin-bottom: 1.5625rem;
	border: none;
	outline: none;
	background: rgba(255, 255, 255, 1);
	line-height: 3rem;
	border-radius: 0.625rem;
	padding: 0 1.25rem;
	font-size: 1.25rem;
}

.f-FaqList textarea {
	width: 100%;
	border-radius: 0.625rem;
	font-family: 'syhtN';
	border: none;
	outline: none;
	background: rgba(255, 255, 255, 1);
	font-size: 1.25rem;
	padding: 1rem 1.25rem;
	height: 9.0625rem;
	margin-bottom: 1.5625rem;
}

.f-FaqList input:nth-child(4) {
	width: 80%;
	position: relative;
}

.footBtn {
	width: 8.5rem;
	background: #fff;
	color: #333;
	line-height: 3rem;
	text-align: center;
	font-size: 1.125rem;
	display: inline-block;
	border-radius: 0.9375rem;
}

#imgfootcode {
	height: 3rem;
}

.f-add .address {
	width: 100%;
	margin-top: 1.5625rem;
}

.f-add .address dl {
	width: 100%;
	display: flex;
	align-items: flex-start;
}

.f-add .address dl dt {
	width: 2.2rem;
	height: 2.1rem;
	display: flex;
	align-items: center;
}

.f-add .address dl dt .iconfont {
	font-size: 1.4rem;
	color: #676668;
}

.f-add .address dl dd {
	width: calc(100% - 2.5rem);
	font-size: 1.125rem;
	line-height: 1.5rem;
	padding: 0.3rem 0;
}

.f-add .ewm {
	width: 100%;
	display: flex;
	padding-top: 1.25rem;
}

.f-add .ewm img {
	width: 9.0625rem;
	margin-right: 1.5625rem;
}

.f-add .address dl:nth-child(2) dt .iconfont {
	font-size: 1.2rem;
}

/* 底部 */


/*  */

.nav-outer .mobile-nav-toggler {
	position: relative;
	display: none;
	float: right;
	color: #ffffff;
	font-size: 40px;
	line-height: 40px;
	font-weight: 100;
	cursor: pointer;
	padding: 20px 0;
}

.nav-outer .mobile-nav-toggler span b {
	font-weight: normal;
	width: 30px;
	height: 3px;
	border-radius: 10px;
	background: #fff;
	display: block;
	margin-bottom: 5px;
}

.mobile-menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 300px;
	max-width: 100%;
	height: 100%;
	padding-right: 30px;
	opacity: 0;
	visibility: hidden;
	z-index: 999999;
}

.mobile-menu .menu-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(19, 44, 81, 0.80);
	-webkit-transform: translateX(101%);
	-ms-transform: translateX(101%);
	transform: translateX(101%);
	transition: all 900ms ease;
	-moz-transition: all 900ms ease;
	-webkit-transition: all 900ms ease;
	-ms-transition: all 900ms ease;
	-o-transition: all 900ms ease;
	z-index: 1;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
	opacity: 0.70;
	visibility: visible;
	-webkit-transition: all 0.7s ease;
	-moz-transition: all 0.7s ease;
	-ms-transition: all 0.7s ease;
	-o-transition: all 0.7s ease;
	transition: all 0.7s ease;
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}

.mobile-menu .mCSB_inside>.mCSB_container {
	margin-right: 5px;
}

.mobile-menu .navbar-collapse {
	display: block !important;
}

.mobile-menu .nav-logo {
	position: relative;
	padding: 30px 15px;
	text-align: left;
	padding-top: 50px;
}

.mobile-menu .nav-logo a {
	position: relative;
	display: inline-block;
}

.mobile-menu-visible {
	overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
	opacity: 1;
	visibility: visible;
}

.mobile-menu .menu-box {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	max-height: 100%;
	overflow-y: auto;
	background: #000000;
	padding: 0px 0px;
	z-index: 5;
	opacity: 0;
	visibility: hidden;
	border-radius: 0px;
	-webkit-transform: translateX(101%);
	-ms-transform: translateX(101%);
	transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-box {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.7s ease;
	-moz-transition: all 0.7s ease;
	-ms-transition: all 0.7s ease;
	-o-transition: all 0.7s ease;
	transition: all 0.7s ease;
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}

.mobile-menu .close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	color: #ffffff;
	font-size: 20px;
	line-height: 30px;
	width: 24px;
	text-align: center;
	cursor: pointer;
	z-index: 10;
	-webkit-transition: all 0.9s ease;
	-moz-transition: all 0.9s ease;
	-ms-transition: all 0.9s ease;
	-o-transition: all 0.9s ease;
	transition: all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn {
	-webkit-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
}

.mobile-menu .close-btn:hover {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.mobile-menu .navigation {
	position: relative;
	display: block;
	width: 100%;
	float: none;
}

.mobile-menu .navigation li {
	position: relative;
	display: block;
	border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li>ul>li:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li>a {
	position: relative;
	display: block;
	padding: 10px 25px;
	color: #ffffff;
	font-size: 15px;
	line-height: 24px;
	font-weight: 500;
	text-transform: uppercase;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.mobile-menu .navigation li>a:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.mobile-menu .navigation li.current>a:before {
	height: 100%;
}

.mobile-menu .navigation li ul li>a {
	font-size: 15px;
	margin-left: 20px;
	text-transform: capitalize;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
	position: absolute;
	top: 2px;
	right: 6px;
	width: 39px;
	height: 39px;
	text-align: center;
	color: #ffffff;
	font-size: 16px;
	line-height: 32px;
	background: url(../images/j.png) no-repeat;
	cursor: pointer;
	border-radius: 2px;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul {
	display: none;
}

.mobile-menu .social-links {
	position: relative;
	text-align: center;
	padding: 30px 25px;
}

.mobile-menu .social-links li {
	position: relative;
	display: inline-block;
	margin: 0px 5px 10px;
}

.mobile-menu .social-links li a {
	position: relative;
	color: #ffffff;
	font-size: 20px;
	line-height: 32px;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}


/*==============================================
    Main Header Css        
===============================================*/

.main-header {
	z-index: 999;
	transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;


}

.header-upper-middle {
	position: relative;
}

.main-menu {
	position: relative;
	display: block;
}

.main-menu .navbar-collapse {
	padding: 0px;
	display: block !important;
}

.main-menu .navigation {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.main-menu .navigation>li {
	position: relative;
	display: inline-block;
	float: left;
	text-align: center;
}






.main-menu .navigation>li>a {
	position: relative;
	display: block;
	color: #fff;
	opacity: 1;
	margin: 0 1.7rem;
	line-height: 7.5rem;
	font-size: 1.5rem;
	font-family: 'syhtB';
}



.main-menu .navigation>li a:hover,
.main-menu .navigation>li.current>a {
	color: #b04b85;
}

.main-menu .navigation>li:last-child a {
	padding-right: 0;
}


.main-menu .navigation>li>ul {
	position: absolute;
	top: 80%;
	left: 0%;
	width: 100%;
	padding: 10px 0;
	opacity: 0;
	visibility: hidden;
	border-radius: 0;
	-moz-transform: translateY(30px);
	-webkit-transform: translateY(30px);
	-ms-transform: translateY(30px);
	-o-transform: translateY(30px);
	transform: translateY(30px);
	transition: all 100ms ease;
	z-index: 100;
}




.main-menu .navigation>li>ul:before {
	position: absolute;
	top: 0px;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	background: #ffffff;
	border-radius: 0;
	-webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
	-ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
	-o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
	box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
	z-index: -1;
	border-radius: 1.25rem;
}

.main-menu .navigation>li.dropdown:hover>ul {
	visibility: visible;
	opacity: 1;
	-moz-transform: translateY(0);
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
}

.main-menu .navigation>li>ul>li {
	position: relative;
	display: block;
	width: 100%;
	text-align: center;
}

.main-menu .navigation>li>ul>li>a {
	position: relative;
	display: block;
	border-bottom: 1px solid #fafafa;
	font-size: 1.125rem;
	line-height: 2.5rem;
	text-align: center;
	text-transform: capitalize;
	transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li:last-child>a {
	border: none;
}

.main-menu .navigation>li>ul>li>a:hover {
	color: #e64747;
}


/*.main-menu .navigation> li> ul> li> a:before{ content:"";
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0;
    font-size: 14px;
    margin: 12px 0;
	opacity: 0; width:6px; height:26px; background:url(../images/sj.png) no-repeat left center;
    transition: all 500ms ease;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.main-menu .navigation>li>ul>li:hover>a:before{
	opacity: 1;
}*/

.main-menu .navigation>li>ul>li>ul {
	position: absolute;
	top: 0%;
	left: 100%;
	width: 100%;
	padding: 10px 0;
	display: none;
	background: #ffffff;
	border-radius: 0;
	-webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
	-ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
	-o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
	box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
	-moz-transform: translateY(30px);
	-webkit-transform: translateY(30px);
	-ms-transform: translateY(30px);
	-o-transform: translateY(30px);
	transform: translateY(30px);
	transition: all 100ms ease;
	z-index: 100;
}

.main-menu .navigation li>ul>li.dropdown:hover ul {
	visibility: visible;
	opacity: 1;
	-moz-transform: translateY(0);
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
}

.main-menu .navigation>li>ul>li>ul>li {
	position: relative;
	display: block;
	padding: 0 20px;
	width: 100%;
}

.main-menu .navigation>li>ul>li>ul>li>a {
	position: relative;
	display: block;
	border-bottom: 1px solid #e9e9e9;
	padding: 13px 0px 13px;
	font-size: 15px;
	line-height: 24px;
	font-weight: 600;
	text-align: left;
	text-transform: capitalize;
	transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>ul>li:last-child>a {
	border: none;
}

.main-menu .navigation>li>ul>li>ul>li>a:hover {
	padding-left: 15px;
}

.main-menu .navbar-collapse>ul li.dropdown .dropdown-btn {
	position: absolute;
	right: 0px;
	top: 0;
	width: 50px;
	height: 42px;
	border-left: 1px solid #242a30;
	text-align: center;
	font-size: 16px;
	line-height: 42px;
	color: #ffffff;
	cursor: pointer;
	display: none;
	z-index: 5;
}

.elder-mode .topBox .HomeWarp,
.elder-mode .HomeWarp {
	width: 95%;
}

.elder-mode .main-menu .navigation>li>a {
	margin: 0 1.2rem;
}


.mobilelogo{ display: none}



@media only screen and (max-width: 1450px) {

	/* 	.main-menu .navigation>li>a,
	.in-warp {
		width: 84%;
		margin: 0 auto;
	} */


}



@media only screen and (min-width: 768px) {

	.main-menu .navigation>li>ul,
	.main-menu .navigation>li>ul>li>ul {
		display: block !important;
		visibility: hidden;
		opacity: 0;
	}
}

@media only screen and (max-width: 1200px) {
	.in-warp {
		width: 84%;
		margin: 0 auto;
	}
}

@media only screen and (max-width: 1198px) {
	.f-top {
		padding: 15px 5%;
	}

	.f-logo {
		width: 30%;
	}

	.f-select select {
		margin-right: 6px;
		width: 11rem;
		font-size: 16px;
		padding: 0 1.25rem;
	}

	.f-copy {
		width: 100%;
		border-top: 1px solid #c4c4c4;
		padding: 20px 3%;
		text-align: center;
		font-size: 16px;
	}

	.f-nav a {
		line-height: 36px;
	}

	.f-ewm {
		width: 6.875rem;
		position: relative;
		right: inherit;
		top: inherit;
		margin: 0 auto;
	}
}



@media only screen and (max-width: 1366px) {}

@media only screen and (max-width: 1199px) {
	header {
		padding: 0 5%;
	}

	.logo {
		width: 20rem;
	}

	.foot-warp {
		width: 90%;
	}

	.f_logo {
		width: 16rem;
		margin-bottom: 20px;
	}


	.f_address .list p {
		font-size: 17px;
		line-height: 1.7rem;
	}

	.f-select .box {
		height: 3rem;
		line-height: 3rem;
		font-size: 18px;
		margin-top: 1rem;
	}

	.f-select .btn {
		width: 3.5rem;
		height: 3rem;
	}
}

@media only screen and (max-width: 960px) {
	.main-header .nav-outer .main-menu {
		display: none !important;
	}

	.nav-outer .mobile-nav-toggler {
		display: block;
	}
}

@media only screen and (max-width: 760px) {
	.copyBox .left {
		display: none;
	}

	.f-Faq,
	.f-add {
		width: 100%;
	}

	.copyBox .right {
		width: 100%;
		text-align: center;
		font-size: 12px;
	}

	.f-FaqList input {
		width: 49%;
		height: 35px;
		font-size: 12px;
	}

	.f-FaqList textarea {
		font-size: 12px;
	}

	.f-add .address dl dd {
		font-size: 12px;
		line-height: 1.8;
	}

	.f-add .address dl {
		align-items: center;
	}

	.nav-warp {
		width: auto;
	}

	.main-header {
		background: none;
		position: absolute;
		top: 11px;
		right: 10px;
	}

	.main-header {
		z-index: 9998;
		margin-left: 0;
		padding-top: 5px;
	}

	.mobile-menu-visible .logo,
	.nav-outer .mobile-nav-toggler {
		padding: 0;
		right: 0;
	}

	.header-warp {
		width: 96%;
		margin: 0 auto;
	}

	.mobile-menu .nav-logo {
		padding-top: 20px;
		width: 160px;
	}

	.in-warp {
		width: 96%;
		margin: 0 auto;
	}

	.logo {
		width: 50%;
	}
.mobilelogo{ display: block;width: 100px;}
	.search,
	.topBox p,
	.logo1,.topRight {
		display: none !important;
	}

	.f-logo {
		width: 100%;
		margin: 0 auto;
	}

	.warp {
		width: 94%;
	}

	.backTop {
		width: 35px;
		height: 35px;
	}

	.topBox .HomeWarp {
		height: 50px;
	}


	.main-menu .navigation>li:last-child {
		display: block;
	}

	header {
		padding: 0;
	}

	.clock .iconfont {
		font-size: 20px;
	}

	.clock select,
	#changeFont {
		font-size: 14px;
	}

	.topBox1 {
		width: 100%;
		height: 50px;
		position: absolute;
		top: 0;
		right: 0;
background: none !important;
	}
}

@keyframes run {
	0% {
		transform: scale(1);
	}

	25% {
		transform: scale(1.04);
	}

	50% {
		transform: scale(1.08);
	}

	75% {
		transform: scale(1.04);
	}

	100% {
		transform: scale(1);
	}
}

@keyframes icon-bounce {

	0%,
	100% {
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	25% {
		-moz-transform: rotate(15deg);
		-ms-transform: rotate(15deg);
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg);
	}

	50% {
		-moz-transform: rotate(-15deg);
		-ms-transform: rotate(-15deg);
		-webkit-transform: rotate(-15deg);
		transform: rotate(-15deg);
	}

	75% {
		-moz-transform: rotate(5deg);
		-ms-transform: rotate(5deg);
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg);
	}

	85% {
		-moz-transform: rotate(-5deg);
		-ms-transform: rotate(-5deg);
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg);
	}
}

@-webkit-keyframes icon-bounce {

	0%,
	100% {
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	25% {
		-moz-transform: rotate(15deg);
		-ms-transform: rotate(15deg);
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg);
	}

	50% {
		-moz-transform: rotate(-15deg);
		-ms-transform: rotate(-15deg);
		-webkit-transform: rotate(-15deg);
		transform: rotate(-15deg);
	}

	75% {
		-moz-transform: rotate(5deg);
		-ms-transform: rotate(5deg);
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg);
	}

	85% {
		-moz-transform: rotate(-5deg);
		-ms-transform: rotate(-5deg);
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg);
	}
}

@-moz-keyframes icon-bounce {

	0%,
	100% {
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	25% {
		-moz-transform: rotate(15deg);
		-ms-transform: rotate(15deg);
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg);
	}

	50% {
		-moz-transform: rotate(-15deg);
		-ms-transform: rotate(-15deg);
		-webkit-transform: rotate(-15deg);
		transform: rotate(-15deg);
	}

	75% {
		-moz-transform: rotate(5deg);
		-ms-transform: rotate(5deg);
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg);
	}

	85% {
		-moz-transform: rotate(-5deg);
		-ms-transform: rotate(-5deg);
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg);
	}
}

@-o-keyframes icon-bounce {

	0%,
	100% {
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	25% {
		-moz-transform: rotate(15deg);
		-ms-transform: rotate(15deg);
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg);
	}

	50% {
		-moz-transform: rotate(-15deg);
		-ms-transform: rotate(-15deg);
		-webkit-transform: rotate(-15deg);
		transform: rotate(-15deg);
	}

	75% {
		-moz-transform: rotate(5deg);
		-ms-transform: rotate(5deg);
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg);
	}

	85% {
		-moz-transform: rotate(-5deg);
		-ms-transform: rotate(-5deg);
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg);
	}
}

@keyframes changeScale {
	0% {
		transform: scale(1.1, 1.1);
		-o-transform: scale(1.1, 1.1);
		-ms-transform: scale(1.1, 1.1);
		-moz-transform: scale(1.1, 1.1);
		-webkit-transform: scale(1.1, 1.1);
		opacity: .2;
	}

	100% {
		transform: scale(1, 1);
		-o-transform: scale(1, 1);
		-ms-transform: scale(1, 1);
		-moz-transform: scale(1, 1);
		-webkit-transform: scale(1, 1);
		opacity: 1
	}
}



@-moz-keyframes changeScale {
	0% {
		transform: scale(1.1, 1.1);
		-o-transform: scale(1.1, 1.1);
		-ms-transform: scale(1.1, 1.1);
		-moz-transform: scale(1.1, 1.1);
		-webkit-transform: scale(1.1, 1.1);
		opacity: .2;
	}

	100% {
		transform: scale(1, 1);
		-o-transform: scale(1, 1);
		-ms-transform: scale(1, 1);
		-moz-transform: scale(1, 1);
		-webkit-transform: scale(1, 1);
		opacity: 1
	}
}



@-webkit-keyframes changeScale {
	0% {
		transform: scale(1.1, 1.1);
		-o-transform: scale(1.1, 1.1);
		-ms-transform: scale(1.1, 1.1);
		-moz-transform: scale(1.1, 1.1);
		-webkit-transform: scale(1.1, 1.1);
		opacity: .2;
	}

	100% {
		transform: scale(1, 1);
		-o-transform: scale(1, 1);
		-ms-transform: scale(1, 1);
		-moz-transform: scale(1, 1);
		-webkit-transform: scale(1, 1);
		opacity: 1
	}
}



@-o-keyframes changeScale {
	0% {
		transform: scale(1.1, 1.1);
		-o-transform: scale(1.1, 1.1);
		-ms-transform: scale(1.1, 1.1);
		-moz-transform: scale(1.1, 1.1);
		-webkit-transform: scale(1.1, 1.1);
		opacity: .2;
	}

	100% {
		transform: scale(1, 1);
		-o-transform: scale(1, 1);
		-ms-transform: scale(1, 1);
		-moz-transform: scale(1, 1);
		-webkit-transform: scale(1, 1);
		opacity: 1
	}
}