/* 重置浏览器默认样式 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
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,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 元素显示为块级元素 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
	background-color: #000;
}

ol,
ul {
	list-style: none;
}

a {
	text-decoration: none;
	/* 去掉下划线 */
}

img {
	margin: 0;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* PC端导航栏 */
.PcBox .navBarBox {
	width: 100%;
	height: 0.9rem;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.75);
	z-index: 9;
	padding: 0 0.8rem;
	box-sizing: border-box;
}

.PcBox .navBarBox .navBar {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
}

.PcBox .navBarBox .navBar .logo {
	height: 0.425rem;
}

.PcBox .navBarBox .navBar .navBox {
	display: flex;
	justify-content: end;
}

.PcBox .navBox .navItem {
	width: 1.25rem;
	height: 100%;
	line-height: 0.9rem;
	font-size: 0.2rem;
	font-weight: bold;
	color: #fff;
	cursor: pointer;
	text-align: center;
	margin-left: 0.4rem;
	position: relative;
}

.PcBox .navBox .language .language_sel{
	position: relative;
	transition: all 0.5s ease;
}

.PcBox .navBox .language .language_sel .alternative{
	position: absolute;
	bottom: 0.1rem;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.15rem;
	line-height: 0.15rem;
	font-weight: normal;
	opacity: 0;
	transition: all 0.5s ease;
}

.PcBox .navBox .language .language_sel .alternative:hover{
	color: #1EFFAA;
}

.PcBox .navBox .language:hover .language_sel{
	transform: translateY(-0.18rem);
}

.PcBox .navBox .language:hover .language_sel .alternative{
	opacity: 1;
}

.PcBox .navBox .language:hover .icon {
	transform: rotate(-90deg);
}

.PcBox .navBox .navItem .icon {
	margin-left: 0.06rem;
	transition: all 0.5s ease;
}

.PcBox .navBox .navItem .navList {
	background-color: #fff;
	width: 100%;
	height: 0;
	position: absolute;
	top: 0.9rem;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.5s ease;
	overflow: hidden;
}

.PcBox .navBox .navItem .navList .navList2 {
	width: 100%;
	height: 1rem;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.PcBox .navBox .more:hover .navList {
	height: 1rem;
}

.PcBox .navBox .navItem .navList a {
	width: 100%;
	display: block;
	font-size: 0.15rem;
	line-height: 0.15rem;
	margin: 0.15rem 0;
	color: #777;
	/* border-bottom: 2px solid #ccc;
	padding-bottom: 0.04rem; */
}

.PcBox .navBox .navItem .navList a:hover {
	color: #000;
	font-weight: bold;
}

.PcBox .navBox .navItem .icon {
	width: 0.1rem;
}

.PcBox .navBox .more:hover .icon {
	transform: rotate(-90deg);
}

.PcBox .navBox .navItem::after {
	content: ' ';
	width: 0;
	height: 1px;
	background-color: #1EFFAA;
	position: absolute;
	bottom: 0.16rem;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.5s ease;
}

.PcBox .navBox .navItem:hover::after {
	width: 100%;
}


/* PC端底部 */
.PcBox .footer {
	width: 100%;
	padding: 0.8rem 1rem;
	box-sizing: border-box;
	color: #fff;
	font-size: 0.175rem;
}

.PcBox .footer .line {
	width: 100%;
	height: 1px;
	background-color: #ccc;
	margin-top: 1.2rem;
	margin-bottom: 0.4rem;
}

.PcBox .footer .top {
	text-align: center;
}

.PcBox .footer .top a {
	margin: 0 0.1rem;
	font-weight: bold;
	cursor: pointer;
	color: #fff;
}

.PcBox .footer .bottom {
	text-align: center;
}

.PcBox .footer .bottom a {
	margin: 0 0.1rem;
	cursor: pointer;
	color: #fff;
}

/* H5端导航栏 */
.H5Box .navBarBox {
	width: 100%;
	height: 0.8rem;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-bottom: 1px solid #aaa;
	z-index: 9;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 0.25rem;
	box-sizing: border-box;
	background-color: rgba(0, 0, 0, 0.75);
}

.navBarRight{
	display: flex;
	align-items: center;
}

.H5Box .navBarBox .navBarRight .lang{
	font-size: 0.23rem;
	font-weight: bold;
	color: #fff !important;
	margin-right: 0.3rem;
}


.H5Box .navBarBox .navbarIcon{
	width: 0.23rem;
}

.H5Box .logo {
	height: 0.425rem;
}

.H5Box .navModal{
	width: 4.2rem;
	position: fixed;
	top: 0;
	left: -4.2rem;
	bottom: 0;
	border-right: 1px solid #fff;
	background-color: #000;
	z-index: 9;
	transition: all 0.5s ease;
	padding: 0.5rem 0.25rem;
	box-sizing: border-box;
}

.H5Box .navModal .navList{
	margin-top: 0.4rem;
}

.H5Box .navModal .navList .navItem{
	color: #fff;
	font-size: 0.2rem;
	line-height: 0.6rem;
	display: block;
}

.H5Box .navModal .closeModalBtn{
	width: 100%;
	height: 0.5rem;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 0.2rem;
	font-weight: bold;
	margin-top: 0.4rem;
}

.H5Box .navModal .selectBox{
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #fff;
	font-size: 0.2rem;
	line-height: 0.6rem;
}

.H5Box .navModal .selectBox .h5Vector2{
	width: 0.25rem;
	transition: all 0.5s ease;
}

.H5Box .navModal .selectItem{
	width: 100%;
	height: 0rem;
	padding-left: 0.2rem;
	overflow: hidden;
	transition: all 0.5s ease;
}
.H5Box .navModal .selectItem .selectItem2{
	display: block;
	height: 0.5rem;
	color: #fff;
	font-size: 0.2rem;
	line-height: 0.6rem;
}
/* h5端底部 */
.H5Box .footer {
	width: 100%;
	padding: 0 0.25rem;
	box-sizing: border-box;
	color: #fff;
	font-size: 0.175rem;
}

.H5Box .footer .line {
	width: 100%;
	height: 1px;
	background-color: #ccc;
	margin-top: 0.6rem;
	margin-bottom: 0.4rem;
}

.H5Box .footer .top {
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.H5Box .footer .top a {
	font-weight: bold;
	cursor: pointer;
	margin-bottom: 0.4rem;
	color: #fff;
}

.H5Box .footer .top a:last-child{
	margin-bottom: 0;
}

.H5Box .footer .bottom {
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.H5Box .footer .bottom a {
	margin-bottom: 0.3rem;
	cursor: pointer;
	color: #fff;
}

/* 全局样式 */

.page {
	width: 100%;
	opacity: 0;
	transition: all 0.5s ease;
}

.lv{
	color: #1EFFAA !important;
	font-weight: bold !important;
}

.jcc {
	display: flex;
	justify-content: center;
	align-items: center;
}

.jcsb {
	display: flex;
	justify-content: space-between;
}

.mb20 {
	margin-bottom: 20px !important;
}

.mb40 {
	margin-bottom: 40px !important;
}

.mr50 {
	margin-right: 50px !important;
}

/* PC端与H5端的匹配 */

/* 屏幕宽度小于600px时 */
@media (max-width: 1024px) {
	.PcBox {
		display: none !important;
	}

	.H5Box {
		display: block !important;
	}
}


/* 屏幕宽度大于1200px时 */
@media (min-width: 1024px) {
	.PcBox {
		display: block !important;
	}
	
	.H5Box {
		display: none !important;
	}
}