html,
body {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	font-size: 16px;
	font-family: "Microsoft YaHei";
}
* {
	box-sizing: border-box;
}
a{
	text-decoration:none;
}

/* 设置滚动条的样式 */
::-webkit-scrollbar {
	width: 4px;
}
/* 滚动槽 */
::-webkit-scrollbar-track {
	-webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.3);
	border-radius: 10px;
}
/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.5);
}


/* 上边header栏 */
.header_pc,
.header_pc_product{
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	width: 100%;
	height: 68px;
}
.header_pc,
.header_pc_product{
	min-width: 1200px;
	padding: 0 52px;
}
.header_pc_product{
	background: #fff;
}
.logo{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo_img{
	width: 32px;
}
.header_pc .logo_text,
.header_pc_product .logo_text{
	margin-left: 17px;
	font-size: 24px;
	font-family: PingFangSC-Semibold, PingFang SC;
	font-weight: 600;
	line-height: 33px;
}
.header_pc .logo_text{
    color: #FFF;
}
.header_pc_product .logo_text{
	color: #0072EC !important;
}

.header-content{
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 500px;
}
.header_pc .header-menu,
.header_pc_product .header-menu{
	position: relative;
	line-height: 40px;
	text-align: center;
	cursor: pointer;
}
.header_pc .header-menu{
    color: #fff;
}
.header_pc_product .header-menu{
	color: #000;
}
.header-phone{
	color: #fff;
}
.header-bottom-line{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: #0072EC;
}
.header-menu.ative {
	color: #0072EC;
}
.header-menu.ative .header-bottom-line{
    width: 100%;
}
.header-menu:hover .header-bottom-line{
	animation: mymove 1s forwards;
	-webkit-animation: mymove 1s forwards;
}
@keyframes mymove
{
    from {width: 0%;}
    to {width: 100%;}
}



/* 底部信息栏 */
.info-bar{
    position: absolute;
    z-index: 3;
	display: flex;
	justify-content: space-around;
	align-items: center;
    width: 100%;
	padding: 40px 0;
	color: #fff;
	background-color: #0F5394;
}
.info-bar-1{
	width: 120px;
	font-size: 26px;
	text-align: center;
}
.info-bar-2 > div,
.info-bar-3 > div,
.info-bar-4 > div{
	margin: 15px 0;
}
.info-bar-2{
	width: 70px;
}
.info-bar-2 > div:first-child{
	width: 50px;
	border-bottom: 1px solid;
	font-size: 18px;
    font-weight: 600;
}
.info-bar-2 > div:not(:first-child){
	cursor: pointer;
}
.info-bar-2 > div > a{
	color: #fff;
}
.info-bar-3{
	width: 230px;
}
.info-bar-3 > div:first-child{
	width: 110px;
	border-bottom: 1px solid;
	font-size: 18px;
    font-weight: 600;
}
.info-bar-4{
	width: 250px;
}
.pic_box{
	position: absolute;
	width: 100%;
	height: 30px;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
#videoBoxXC{
	position: fixed;
	top:140px;
	right:300px;
	z-index: 99;
	padding: 8px;
	border-radius: 4px;
	background-color: #eee;
	height: 354px;
}
.videoBoxXCInfo{
	width: 600px;
	height: 337px;
	border-radius: 4px;
}
.videoClseBox{
	width: 24px;
	height: 24px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top:0;
	right: 0;
	border-radius: 24px;
}
.videoClse{
	width: 20px;
	height: 20px;
}