@charset "utf-8";
/* ====================公共样式========================= */
/* 头部 */
.Header-wrapper {
	width: 100%;
	position: fixed;
	z-index: 99999;
	top: 0;
	left: 0;
transition: background .4s ease;
	background: rgba(40, 33, 33, .5);
	user-select: none;
	box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.Header-wrapper .contain {
	width: 100%;
	padding: 0 90px 0 70px;
}
.Header-logo {
	float: left;
	height: 90px;
	display: flex;
	align-items: center;
	position: relative;
	z-index: 999;
}
.Header-logo img {
	height: 60px;
	position: absolute;
transition: all .4s ease;
}
.Header-logo img.s {
	opacity: 1;
}
.Header-logo img.h {
	opacity: 0;
}
.Header-lang {
	float: right;
	position: relative;
	z-index: 999;
	margin-left:30px;
}
.Header-lang-menu {
	display: flex;
	align-items: center;
	height: 90px;
	font-size: 16px;
transition: all .4s ease;
	color: #fff;
	padding-left: 28px;
	
}
.Header-lang-menu strong{ font-size:20px}
.Header-lang-menu a:hover {
	color: #3257b0;
}
.Header-search {
	float: right;
}
.Header-search-click {
	width: 40px;
	height: 90px;
	cursor: pointer;
	background: url('../images/searchW.svg') no-repeat center /26px auto;
	position: relative;
	z-index: 999;
}
.Header-search-click.active {
	background: url('../images/closeW.svg') no-repeat center/20px auto;
}
.Header-search-item {
	display: none;
	position: absolute;
	width: 100%;
	height: 90px;
	line-height: 90px;
	top: 0;
	left: 0;
	z-index: 99;
	text-align: right;
}
.Header-search-item .contain {
	padding: 0 302px 0 0;
}
.Header-search-item.active {
	display: block;
}
.Header-search-item input, .Header-search-item button {
	display: inline-block;
	vertical-align: middle;
}
.Header-search-item input {
	width: 0px;
	height: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	font-size: 16px;
	color: #fff;
	background: transparent;
transition: border .4s ease;
}
.Header-search-item input::-webkit-input-placeholder {
color: #ddd;
}
.Header-search-item input:-moz-placeholder {
color: #ddd;
}
.Header-search-item input::-moz-placeholder {
color: #ddd;
}
.Header-search-item input:-ms-input-placeholder {
color: #ddd;
}
.Header-search-item.active input {
	animation: HeaderSearch 0.8s ease both;
}
@keyframes HeaderSearch {
0% {
width: 40px;
}
100% {
width: 520px;
}
}
.Header-search-item button {
	width: 50px;
	height: 40px;
	background: url('../images/searchW.svg') no-repeat center /26px auto;
	cursor: pointer;
	margin-right: 0;
}
body.onSearch .Header-navbar {
	visibility: hidden;
	opacity: 0;
}
.Header-navbar {
	float: right;
	margin-right: 0px;
	visibility: visible;
	opacity: 1;
transition: visibility .2s ease, opacity .2s ease
}
body.PC .Header-navbar {
	display: block !important;
}
.Header-navbar li {
	float: left;
	padding: 0 20px;
	position: relative;
	z-index: 9
}
.Header-navbar li::after {
content: "";
position: absolute;
width: 100%;
height: 0;
left: 0;
bottom: 0;
background: #3257b0;
opacity: 0;
transition: height .4s ease, opacity .2s ease .3s;
}
.Header-menu {
	position: relative;
	z-index: 4;
	height: 90px;
	display: flex;
	align-items: center;
	font-size: 16px;
	color: #fff;
transition: color .4s ease;
}
.Header-navbar li.active .Header-menu, .Header-navbar li:hover .Header-menu {
	color: #fff
}
.Header-navbar li.active::after, .Header-navbar li:hover:after {
height: 100%;
opacity: 1;
transition: height .4s ease .1s, opacity .2s ease;
}
.Header-arrow {
	display: none;
}
.Header-drop {
	display: none;
	position: absolute;
	background: transparent;
	left: 0;
	width: 800px;
	font-size: 0;
	padding: 24px 24px;
}
.Header-navbar li:nth-last-child(1) .Header-drop {
left: auto;
right: 0;
text-align: right;
}
.Header-navbar li:nth-last-child(2) .Header-drop {
left: auto;
right: 0;
text-align: right;
}
.Header-block {
	position: absolute;
	width: 100%;
	left: 0;
	background: #3257b0;
	height: 69px;
	top: 90px;
	display: none;
}
.Header-drop a {
	display: inline-block;
	margin: 0 14px;
	vertical-align: middle;
	font-size: 14px;
	color: #fff;
transition: color .4s ease;
	position: relative;
	z-index: 2;
}
.Header-drop a.active, .Header-drop a:hover {
	
}
.Header-drop a:first-child {
	margin-left: 0;
}
.Header-drop a:last-child {
	margin-right: 0;
}
.Header-navclick {
	display: none;
	width: 24px;
	height: 60px;
	cursor: pointer;
	float: right;
	user-select: none;
	align-items: center;
}
.Header-navclick span {
	width: 100%;
	height: 2px;
	background: #444;
	display: block;
	position: relative;
transition: all .2s linear;
}
.Header-navclick span:before, .Header-navclick span:after {
	content: "";
	position: absolute;
	height: 2px;
	background: #444;
	display: block;
	left: 0;
	width: 100%;
transition: all .2s linear;
}
.Header-navclick span:before {
	top: -7px;
}
.Header-navclick span:after {
	top: 7px;
}
.Header-navclick.active span {
	-moz-animation: buttonAnimation 0.3s ease forwards;
	-webkit-animation: buttonAnimation 0.3s ease forwards;
	animation: buttonAnimation 0.3s ease forwards;
}
.Header-navclick.active span:before {
	-moz-animation: buttonAnimationBefore 0.3s ease forwards;
	-webkit-animation: buttonAnimationBefore 0.3s ease forwards;
	animation: buttonAnimationBefore 0.3s ease forwards;
}
.Header-navclick.active span:after {
	-moz-animation: buttonAnimationAfter 0.3s ease forwards;
	-webkit-animation: buttonAnimationAfter 0.3s ease forwards;
	animation: buttonAnimationAfter 0.3s ease forwards;
}
body.noLucency .Header-wrapper {
	background: #fff;
}
body.noLucency .Header-logo img.s {
	opacity: 0;
}
body.noLucency .Header-logo img.h {
	opacity: 1;
}
body.noLucency .Header-menu {
	color: #444;
}
body.noLucency .Header-lang-menu {
	color: #444;
	
}
body.noLucency .Header-search-click {
	background-image: url('../images/search.svg');
}
body.noLucency .Header-search-click.active {
	background-image: url('../images/close.svg');
}
body.noLucency .Header-search-item button {
	background-image: url('../images/search.svg');
}
body.noLucency .Header-search-item input {
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	color: #444;
}
body.noLucency .Header-search-item input::-webkit-input-placeholder {
color: #999;
}
body.noLucency .Header-search-item input:-moz-placeholder {
color: #999;
}
body.noLucency .Header-search-item input::-moz-placeholder {
color: #999;
}
body.noLucency .Header-search-item input:-ms-input-placeholder {
color: #999;
}
/* ---- */
body.scrollLucency .Header-wrapper {
	background: #fff;
}
body.scrollLucency .Header-logo img.s {
	opacity: 0;
}
body.scrollLucency .Header-logo img.h {
	opacity: 1;
}
body.scrollLucency .Header-menu {
	color: #444;
}
body.scrollLucency .Header-lang-menu {
	color: #444;
	
}
body.scrollLucency .Header-search-click {
	background-image: url('../images/search.svg');
}
body.scrollLucency .Header-search-click.active {
	background-image: url('../images/close.svg');
}
body.scrollLucency .Header-search-item button {
	background-image: url('../images/search.svg');
}
body.scrollLucency .Header-search-item input {
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	color: #444;
}
body.scrollLucency .Header-search-item input::-webkit-input-placeholder {
color: #999;
}
body.scrollLucency .Header-search-item input:-moz-placeholder {
color: #999;
}
body.scrollLucency .Header-search-item input::-moz-placeholder {
color: #999;
}
body.scrollLucency .Header-search-item input:-ms-input-placeholder {
color: #999;
}
/* ---- */
body.mouseLucency .Header-wrapper {
	background: #fff;
}
body.mouseLucency .Header-logo img.s {
	opacity: 0;
}
body.mouseLucency .Header-logo img.h {
	opacity: 1;
}
body.mouseLucency .Header-menu {
	color: #444;
}
body.mouseLucency .Header-lang-menu {
	color: #444;

}
body.mouseLucency .Header-search-click {
	background-image: url('../images/search.svg');
}
body.mouseLucency .Header-search-click.active {
	background-image: url('../images/close.svg');
}
body.mouseLucency .Header-search-item button {
	background-image: url('../images/search.svg');
}
body.mouseLucency .Header-search-item input {
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	color: #444;
}
body.mouseLucency .Header-search-item input::-webkit-input-placeholder {
color: #999;
}
body.mouseLucency .Header-search-item input:-moz-placeholder {
color: #999;
}
body.mouseLucency .Header-search-item input::-moz-placeholder {
color: #999;
}
body.mouseLucency .Header-search-item input:-ms-input-placeholder {
color: #999;
}
 @-moz-keyframes buttonAnimationBefore {
 0% {
-moz-transform: translateY(0px) rotate(0);
transform: translateY(0px) rotate(0);
}
 50% {
-moz-transform: translateY(7px) rotate(0);
transform: translateY(7px) rotate(0);
}
 100% {
-moz-transform: translateY(7px) rotate(45deg);
transform: translateY(7px) rotate(45deg);
}
}
@-webkit-keyframes buttonAnimationBefore {
 0% {
-webkit-transform: translateY(0px) rotate(0);
transform: translateY(0px) rotate(0);
}
 50% {
-webkit-transform: translateY(7px) rotate(0);
transform: translateY(7px) rotate(0);
}
 100% {
-webkit-transform: translateY(7px) rotate(45deg);
transform: translateY(7px) rotate(45deg);
}
}
@keyframes buttonAnimationBefore {
 0% {
-moz-transform: translateY(0px) rotate(0);
-ms-transform: translateY(0px) rotate(0);
-webkit-transform: translateY(0px) rotate(0);
transform: translateY(0px) rotate(0);
}
 50% {
-moz-transform: translateY(7px) rotate(0);
-ms-transform: translateY(7px) rotate(0);
-webkit-transform: translateY(7px) rotate(0);
transform: translateY(7px) rotate(0);
}
 100% {
-moz-transform: translateY(7px) rotate(45deg);
-ms-transform: translateY(7px) rotate(45deg);
-webkit-transform: translateY(7px) rotate(45deg);
transform: translateY(7px) rotate(45deg);
}
}
@-moz-keyframes buttonAnimationAfter {
 0% {
-moz-transform: translateY(0) rotate(0);
transform: translateY(0) rotate(0);
}
 50% {
-moz-transform: translateY(-7px) rotate(0);
transform: translateY(-7px) rotate(0);
}
 100% {
-moz-transform: translateY(-7px) rotate(-45deg);
transform: translateY(-7px) rotate(-45deg);
}
}
@-webkit-keyframes buttonAnimationAfter {
 0% {
-webkit-transform: translateY(0) rotate(0);
transform: translateY(0) rotate(0);
}
 50% {
-webkit-transform: translateY(-7px) rotate(0);
transform: translateY(-7px) rotate(0);
}
 100% {
-webkit-transform: translateY(-7px) rotate(-45deg);
transform: translateY(-7px) rotate(-45deg);
}
}
@keyframes buttonAnimationAfter {
 0% {
-moz-transform: translateY(0) rotate(0);
-ms-transform: translateY(0) rotate(0);
-webkit-transform: translateY(0) rotate(0);
transform: translateY(0) rotate(0);
}
 50% {
-moz-transform: translateY(-7px) rotate(0);
-ms-transform: translateY(-7px) rotate(0);
-webkit-transform: translateY(-7px) rotate(0);
transform: translateY(-7px) rotate(0);
}
 100% {
-moz-transform: translateY(-7px) rotate(-45deg);
-ms-transform: translateY(-7px) rotate(-45deg);
-webkit-transform: translateY(-7px) rotate(-45deg);
transform: translateY(-7px) rotate(-45deg);
}
}
@-moz-keyframes buttonAnimation {
 0% {
background: transparent;
}
 50% {
background: rgba(255, 255, 255, 0);
}
 100% {
background: rgba(255, 255, 255, 0);
}
}
@-webkit-keyframes buttonAnimation {
 0% {
background: transparent;
}
 50% {
background: rgba(255, 255, 255, 0);
}
 100% {
background: rgba(255, 255, 255, 0);
}
}
@keyframes buttonAnimation {
 0% {
background: transparent;
}
 50% {
background: rgba(255, 255, 255, 0);
}
 100% {
background: rgba(255, 255, 255, 0);
}
}
/* 底部 */
.Footer-wrapper {
	width: 100%;
	background: #313131;
	position: relative;
	z-index: 9;
}
.Footer-items {
	width: 100%;
	padding: 96px 0
}
.Footer-items .contain {
	display: flex;
	justify-content: space-between
}
.Footer-navbar {
	width: 1000px;
	overflow: hidden;
	user-select: none;
}
.Footer-navbar ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.Footer-navbar li {
	width: auto;
}
.Footer-menu {
	font-size: 18px;
	color: #fff;
	display: block
}
.Footer-drop {
	width: 100%;
	margin-top: 10px;
}
body.PC .Footer-drop {
	display: block !important;
}
.Footer-drop a {
	display: block;
	font-size: 14px;
	color: #777;
	line-height: 1;
	padding: 8px 0;
transition: all .4s ease;
}
.Footer-drop a:hover {
	color: #fff;
}
.Footer-copyright {
	width: 100%
}
.Footer-copyright .contain {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	border-top: 2px solid #484848;
	padding: 22px 0
}
.Footer-copyright-mix {
	width: auto;
}
.Footer-copyright-mix h6 {
	font-size: 12px;
	color: #777;
	line-height: 20px;
}
.Footer-copyright-mix h6, .FooterCode {
	display: inline-block;
	vertical-align: middle;
}
.Footer-copyright-info {
	width: auto;
}
.Footer-copyright-info a {
	font-size: 12px;
	margin-left: auto;
	color: #666;
	margin-left: 20px;
transition: all .4s ease;
}
.Footer-copyright-info a:first-child {
	margin-left: 0;
}
.Footer-copyright-info a:hover {
	color: #fff;
}
.Footer-stock {
	width: 140px
}
.Footer-stock img{ width:140px;}
.Footer-stock span{ display:block; text-align:center; line-height:40px; font-size:14px; color:#999}
.Footer-stock h3 {
	font-size: 18px;
	color: #fff
}
.Footer-stock p {
	font-size: 12px;
	color: #777;
	margin-top: 30px
}
.stock-main {
	margin-top: 18px;
	font-size: 48px;
	color: #3257b0;
	line-height: 1;
	display: flex;
	align-items: flex-end;
	justify-content: space-between
}
.stock-main i {
	display: block;
	background: url("../images/icon_stock_up.png")no-repeat center /100%;
	width: 16px;
	height: 13px;
	margin: 0 24px 0 10px;
}
.stock-main span {
	display: block;
	font-size: 20px
}
.stock-main.down {
	color: #007a00;
}
.stock-main.down i {
	background-image: url('../images/icon_stock_down.png');
}
.FooterCode {
	font-size: 0;
}
.FooterCode a {
	display: inline-block;
	vertical-align: middle;
	position: relative;
}
.FooterCode a:first-child {
	margin-left: 0;
}
.FooterCode a {
	width: 34px;
	text-align: center;
	margin: 0 8px;
}
.FooterCode a>img {
	width: 100%;
}
.FooterCode-img {
	display: none;
	width: 152px;
	height: 152px;
	padding: 6px;
	position: absolute;
	top: 46px;
	left: 50%;
	margin-left: -76px;
	background: #fff;
	border-radius: 4px;
}
.FooterCode-img::after {
content: "";
display: block;
width: 0px;
height: 0px;
border: 8px solid transparent;
border-bottom-color: #fff;
position: absolute;
top: -16px;
left: 50%;
margin-left: -8px;
}
.FooterCode-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.FooterCode a:hover .FooterCode-img {
	display: block;
animation: FooterCode .6s ease-in-out both;
}
@keyframes FooterCode {
0% {
transform: translateY(14px);
}
100% {
transform: translateY(0);
}
}
.Footer-stock .codeImg {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 20px;
	max-width: 220px;
}
.Footer-stock .codeImg li {
	width: 48%;
}
.Footer-stock .codeImg li img {
	width: 100%;
	object-fit: cover;
}
.Footer-stock .FooterCode {
	margin-left: 0;
	margin-top: 24px;
}
/* 置顶 */
.backTop {
	display: none;
	right: 40px;
	bottom: 60px;
	width: 44px;
	height: 44px;
	border-radius: 4px;
	position: fixed;
	cursor: pointer;
	z-index: 9999;
	background: #3257b0 url('../images/top.svg') no-repeat center/22px auto;
}
@media all and (max-width:1599px) {
.backTop {
right: 30px;
bottom: 40px;
}
}
@media all and (max-width:640px) {
.backTop {
right: 8px;
bottom: 20px;
width: 40px;
height: 40px;
background-size: 20px auto;
}
}
/* 中间+共用部分 */
.Container-wrapper {
	width: 100%
}
body.noLucency .Container-wrapper {
	margin-top: 90px;
}
.contain-1600, .contain-1400, .contain {
	margin: 0 auto;
}
.contain {
	width: 1440px;
}






/* -------------------------PC端--------------------------- */
@media all and (max-width:1700px) {
    /* 1600 × (900) */
    .contain-1600 {
width: 1400px;
}
}
 @media all and (max-width:1599px) {
    /* 1440 × (700)  */
    .contain {
width: 1200px
}
 .Footer-navbar {
width: 800px;
}
 .Header-navbar li {
padding: 0 12px;
}
 .Header-wrapper .contain {
padding: 0 80px 0 60px;
}
 .Header-navbar {
margin-right: 0px;
}
 .Footer-items {
padding: 80px 0;
}
 .Header-search-item .contain {
padding: 0 280px 0 0;
}
 .Header-drop {
padding: 24px 20px;
}
}
 @media all and (max-width:1439px) {
 .Header-logo img{ height:55px;}
 .Header-lang{ margin-left:20px;}
 .Header-lang-menu{ margin-left:0px; padding-left:0px;}
/* 1360 */
}
 @media all and (max-width:1359px) {
    /* 1280 */
    .Header-navbar li {
padding: 0 16px;
}
 .Header-navbar {
margin-right: 20px;
}
 .Header-lang {
margin-left: 20px;

}
 .Header-search-item .contain {
padding: 0 256px 0 0;
}
 @keyframes HeaderSearch {
0% {
width: 40px;
}
100% {
width: 480px;
}
}
 .Header-drop {
padding: 24px 16px;
}
}
 @media all and (max-width:1279px) {
    /* 1152 × (700) */
    .contain {
width: 960px
}
 .Footer-navbar {
width: 700px;
}
 .stock-main {
font-size: 40px;
}
 .stock-main i {
margin: 0 16px 0 8px;
}
 .Footer-items {
padding: 68px 0;
}
 .Header-navbar li {
padding: 0 12px;
}
 .Header-navbar {
margin-right: 10px;
}
 .Header-lang {
margin-left: 10px;
}
 .Header-search-item .contain {
padding: 0 234px 0 0;
}
 @keyframes HeaderSearch {
0% {
width: 40px;
}
100% {
width: 420px;
}
}
 .Header-drop {
padding: 24px 12px;
}
}
 @media all and (max-width:1151px) {
    /* 1024 */
    .Header-wrapper .contain {
padding: 0 4%;
}
 .Header-search-item .contain {
padding: 0 calc(4% + 150px) 0 0;
}
 .Header-navbar li {
padding: 0 8px;
}
 .Header-drop {
padding: 24px 8px;
}
}


/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {
    /* 平板设备 720 适配 */
    body.onSearch .Header-navbar {
visibility: visible;
opacity: 1;
}
 .contain {
width: 92%;
}
 body.noLucency .Container-wrapper {
margin-top: 60px;
}
 .Container-wrapper {
margin-top: 60px;
}
 .Header-wrapper {
background: #fff;
}
 .Header-wrapper .contain {
width: 100%;
padding: 0;
}
 .Header-wrapper::after {
content: "";
width: 100%;
height: 1px;
position: absolute;
background: rgba(0, 0, 0, 0.1);
left: 0;
bottom: 0;
}
 .Header-logo, .Header-search-click {
height: 60px;
}
 .Header-logo {
margin-left: 4%;
}
.Header-logo img{ height:45px;}
 .Header-logo img.s {
opacity: 0;
}
 .Header-logo img.h {
opacity: 1;
}
 .Header-navclick {
display: flex;
margin-right: 4%;
}
 .Header-lang {
margin: 0 12px 0 0;

width: 30px;
height: 60px;
}
 .Header-lang-menu {
display: none;
background: #fff;
flex-wrap: wrap;
height: auto;
padding: 4px 0;
font-size: 0;
box-shadow: 0 1px 6px 0px rgba(0, 0, 0, 0.1);
padding-left: 0;
position: relative;
color: #444;
position: absolute;
top: 60px;
left: 50%;
width: 100px;
margin-left: -50px;
}
 .Header-lang-menu:before {
content: "";
display: block;
width: 0px;
height: 0px;
border-style: solid;
border-width: 0 8px 8px;
border-color: transparent transparent #efefef transparent;
position: absolute;
top: -8px;
left: 50%;
margin: 0 0 0 -8px;
}
 .Header-lang-menu a {
display: block;
width: 100%;
font-size: 16px;
text-align: center;
height: 34px;
line-height: 34px;
}
 .Header-lang.active .Header-lang-menu {
display: block;
animation: langInUp .4s ease-out;
}
 @keyframes langInUp {
0% {
transform: translateY(20px);
opacity: 0.5;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
 .Header-navbar {
display: none;
position: absolute;
width: 100%;
margin-right: 0;
height: calc(100vh - 60px);
top: 60px;
left: 0;
padding: 20px 0;
background: #fff;
transition: none;
}
 .Header-navbar ul {
display: block;
width: 100%;
height: 100%;
overflow-x: hidden;
overflow-y: auto;
-webkit-overflow-scrolling: touch
}
 .Header-navbar li {
display: block;
width: 100%;
opacity: 0;
transform: translateY(32px);
transition: transform .4s ease, opacity .4s ease;
padding: 0;
position: relative;
}
 .Header-navbar li::after {
display: none;
}
 .Header-navbar.active li {
opacity: 1;
transform: translateY(0);
}
 .Header-menu {
height: 50px;
padding: 0 4%;
color: #444;
}
 .Header-arrow {
display: block;
width: 50px;
height: 50px;
position: absolute;
z-index: 9;
right: 0;
top: 0;
background: url('../images/arrD.svg') no-repeat center /18px auto;
}
 .Header-arrow.active {
transform: rotate(180deg);
}
 .Header-navbar li:hover .Header-menu {
color: #444;
}
 .Header-navbar li.active .Header-menu {
color: #3257b0;
}
 .Header-block {
display: none !important;
}
 .Header-drop {
position: relative;
top: 0;
left: 0;
width: 100%;
margin-left: 0;
overflow: hidden;
padding: 16px 0;
text-align: left !important;
background: #313131;
}
 .Header-drop a {
height: 34px;
line-height: 34px;
text-align: left;
padding: 0 4%;
width: 50%;
margin: 0;
}
 .Header-search-item {
display: none;
width: 100%;
line-height: normal;
height: 45px;
top: 60px;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
padding: 0;
}
 .Header-search-item .contain {
padding-right: 0;
}
 .Header-search-item input {
width: 100%;
height: 44px;
padding: 0 50px 0 4%;
border-bottom: none !important;
background: #fff;
color: #444;
}
 .Header-search-item input::-webkit-input-placeholder {
color: #999;
}
 .Header-search-item input:-moz-placeholder {
color: #999;
}
 .Header-search-item input::-moz-placeholder {
color: #999;
}
 .Header-search-item input:-ms-input-placeholder {
color: #999;
}
 .Header-search-item.active input {
animation: none;
}
 .Header-search-item button {
position: absolute;
right: 0;
top: 0;
width: 44px;
height: 46px;
top: -1px;
background: #3257b0 url('../images/searchW.svg') no-repeat center /26px auto !important;
z-index: 2;
}
 .Header-search-click.active {
background-image: url('../images/close.svg') !important;
}
 .Header-search-click {
background-image: url('../images/search.svg') !important;
}
 .Footer-items {
padding: 32px 0 36px;
}
 .Footer-items .contain {
width: 100%;
display: block;
}
 .Footer-navbar {
width: 100%;
}
 .Footer-navbar li {
width: 100% !important;
}
 .Footer-menu {
height: 40px;
line-height: 40px;
padding: 0 4%;
position: relative;
font-size: 16px;
}
 .Footer-menu::after {
content: "";
width: 44px;
height: 40px;
position: absolute;
z-index: 9;
right: 0;
top: 0;
background: url('../images/arrDW.svg') no-repeat center /18px auto;
}
 .Footer-menu.active::after {
transform: rotate(180deg);
}
 .Footer-drop a {
padding: 8px 4%;
}
 .Footer-drop {
display: none;
margin-top: 0;
}
 .Footer-stock {
width: 100%;
margin-top: 20px;
padding: 0 4%;
}
 .stock-main {
width: 144px;
font-size: 30px;
margin-top: 12px;
}
 .stock-main i {
margin: 0 10px 0 4px;
}
 .stock-main span {
font-size: 16px;
}
 .Footer-stock h3 {
font-size: 16px;
}
 .Footer-stock p {
margin-top: 10px;
}
 .Footer-copyright {
text-align: center;
}
 .Footer-copyright .contain {
padding: 20px 4%;
width: 100%;
}
 .Footer-copyright h6 {
width: 100%;
}
 .FooterCode {
text-align: center;
margin: 12px 0 0;
display: none;
}
 .Footer-copyright-info {
width: 100%;
margin-top: 12px;
}
 .Footer-copyright-info a {
margin-left: 12px;
}
}
@media all and (max-width:640px) {
/* 移动终端以上 360 适配 */
}
