/*全局的CSS*/

html,
body {
	width: 100%;
	height: 100%;
	background-color: #FFFFFF;
}

input,
img {
	vertical-align: middle;
	border: 0, none;
	outline-style: none;
	padding: 0;
	margin: 0;
}

body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
dt,
dd,
ul,
li {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

a {
	color: #000;
	text-decoration: none;
}


/*清除浮动*/

.clearfix {
	/*兼容IE*/
	zoom: 1;
	overflow: auto;
}


/*隐藏进度条*/

.inContainer {
	/*兼容火狐*/
	scrollbar-width: none;
	/*兼容IE10+*/
	-ms-overflow-style: none;
}

.inContainer::-webkit-scrollbar {
	display: none;
}


/*侧拉栏宽度设置*/

.mui-off-canvas-right {
	width: 100%;
	height: 100%;
	background-color: #FFFFFF;
}

.mui-navigate-right:after {
	color: #333333;
}

.mui-off-canvas-right .header {
	background-color: #F9F9F9;
}

.mui-table-view .mui-table-view .mui-table-view-cell>a:not(.mui-btn) {
	margin: -11px -15px -11px -32px;
}

.mui-table-view .mui-table-view .mui-table-view-cell:after {
	position: absolute;
	width: 89% !important;
	left: 7% !important;
}

.mui-inner-wrap {
	overflow-y: auto;
	/*border: 1px solid red;*/
}

.mui-inner-wrap .header{
	position: fixed;
	top: 0;
	z-index: 99999;
	background-color: #FFFFFF;
}
/*--header--------*/

.header {
	display: flex;
	display: -webkit-flex;
	/*决定主轴的方向（即项目的排列方向）。*/
	flex-direction: row;
	/*换行方式*/
	flex-wrap: wrap;
	/*主轴对齐方式*/
	justify-content: space-between;
	/*项目在交叉轴上如何对齐。*/
	align-items: center;
	width: 100%;
	height: 50px;
	padding: 0 20px 0 16px;
	box-sizing: border-box;
	border-bottom: 1px solid #bbbbbb4a;
}

.header img:nth-child(1) {
	height: 24px;
}

.header img:nth-child(2) {
	height: 14px;
}


/*内容部分*/

.content {
	padding-top: 50px;
	/*border: 1px solid red;*/
}


/*页面顶部图片  只有一张时 用这个*/

.content .top-nanner {
	width: 100%;
	background-color: #EEEEEE;
}

.content .top-nanner img {
	width: 100%;
	height: 53vw;
	object-fit: cover;
	object-position: center;
}


/*--footer_bg-------*/

.footer_warp {
	width: 100%;
}

.footer_center {
	padding: 0 7%;
	background-color: #323232;
}

.footer_center .footer_left {
	padding-top: 22px;
	color: #FFFFFF;
}

.footer_nav li {
	padding: 14px 0;
	border-bottom: 1px solid #444444;
}

.footer_nav li span {
	display: block;
	color: #FFFFFF;
	font-size: 14px;
	line-height: 20px;
}


/* footer_right */

.footer_center .footer_right {
	padding: 40px 0 20px;
	text-align: center;
}

.footer_right .footer_right_wx {
	/*margin-top: 45px;*/
}

.footer_right .footer_right_wx img {
	width: 130px;
}

.footer_right .footer_right_wx span {
	display: block;
	text-align: center;
	line-height: 30px;
	color: #999999;
}


/*最底部 公司信息*/

.footer_warp .footer_bottom {
	padding: 14px 0;
	text-align: center;
	background-color: #272727;
}

.footer_warp .footer_bottom span {
	display: block;
	color: #999999;
	line-height: 20px;
	font-size: 12px;
}


/*视频播放弹窗 */

.video-pop {
	display: none;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 9999;
	background-color: #000000;
}

.video-pop .video-content {
	position: absolute;
	width: 100vw;
	height: 56vw;
	top: calc( 50vh - 28vw);
	left: 0;
}

.video-pop .video-content #videoPlay {
	width: 100%;
	height: 100%;
}

.video-pop .video-content-close {
	position: absolute;
	width: 18px;
	bottom: -80px;
	right: calc( 50% - 9px);
	cursor: pointer;
}