/* css-公用的-start */
	*{
		margin: 0;
		padding: 0;
		font-family:'Adobe 黑体 Std';
	}

	li {
		list-style: none;
	}

	a{
		text-decoration:none
	}

	img{
		transition: all 0.6s;
		vertical-align: bottom;
	}

	.aligncenter, p img{
		height:	auto;
		display: block;
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	.wrapper{
		overflow: hidden;
	}

	.swiper{
		--swiper-navigation-size:0;
	}

	.relative{
		position: relative;
	}

	.swiper-wrapper {
		transition-timing-function: linear !important;
	}

	.img-hover-item{
		transform: scale(1.2);
	}

	.w {
		width: 76.196%;
		margin: 0 auto;
	}

	.aligncenter {
		height:	auto;
		display: block;
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	table{
		max-width: 100% !important;
	}

/* css-公用的-end */

/* 字体-公用的-start */
/* 	@font-face {
		font-family: "SourceHanSansCNLight";
		src: url('fonts/SourceHanSansCN-ExtraLight.otf') format('opentype');
	}

	@font-face {
		font-family: "SourceHanSansCNMedium";
		src: url('fonts/SourceHanSansCN-Medium.otf') format('opentype');
	}

	@font-face {
		font-family: "SourceHanSansCNHeavy";
		src: url('fonts/SourceHanSansCN-Heavy.otf') format('opentype');
	} */
/* 字体-公用的-end */

/* 图片放大-公用的-start */
	#ip-img-preview{
		width: 30%;
	}

	#ip-left{
		width: 40px;
		height: 40px;
		display: none;
		cursor: pointer;
		z-index:19941207;
		position:fixed;
		top: 50%;
		left:10px;
	}

	#ip-left div{
		width: 100%;
		height: 100%;
		background: url('images/icon-left.png') no-repeat center;
		background-size: 100% 100%;
	}

	#ip-right{
		width: 40px;
		height: 40px;
		display: none;
		cursor: pointer;
		z-index:19941207;
		position:fixed;
		top: 50%;
		right: 10px;
	}

	#ip-right div{
		width: 100%;
		height: 100%;
		background: url('images/icon-right.png') no-repeat center;
		background-size: 100% 100%;
	}
/* 图片放大-公用的-end */

/* 滚动条-公用的-start */
	.scroll-bar{
		overflow: auto;
	}

	.scroll-bar::-webkit-scrollbar {
		display: none;
	}
/* 滚动条-公用的-end */

/* 视频-公用-start */
	.video-js{
		width: 100%;
		height: auto;
		line-height: 0;
		background-color: rgba(0, 255, 255, 1);
	}

	.video-js,
	.video-js .vjs-tech,
	.video-js .vjs-poster{
		border-radius: 15px;
	}

	.vjs-has-started .vjs-control-bar{
		border-radius: 0px 0px 15px 15px;
	}

	.video-js .vjs-tech{
		position: static;
	}

	.video-js .vjs-big-play-button{
		height: 0px;
		width: 16.854%;
		border-width: 0px;
		padding: 8.427% 0%;
		background-color: rgba(0, 0, 0, 0);
		background-image: url('images/training-video-1.png');
		background-size: 100% 100%;
		background-repeat:no-repeat;
		background-position: center;
	}

	.video-js:hover .vjs-big-play-button{
		background-color: rgba(0, 0, 0, 0);
	}

	.video-js .vjs-big-play-button .vjs-icon-placeholder{
		display: none;
	}

	.video-js .vjs-play-progress:before,
	.vjs-slider-horizontal .vjs-volume-level:before{
		top: 64%;
	}
/* 视频-公用-end */

/* 头部 */
	.header-wrapper{
		width: 100%;
		background-color: rgba(130, 130, 130, 0.3);
		position: relative;
		position: fixed;
		top: 0px;
		left: 0px;
		z-index: 999;
	}
	
	.header-wrapper .header{
		width: 100%;
		height: 90px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	/* 头部-logo */
	.header-wrapper .header .logo{
		width: 15.173%;
	}
	
	.header-wrapper .header .logo img{
		width: 100%;
		height: 100%;
	}
	
	.header-wrapper .header .computer-logo{
		display: inline-block;
	}
	
	.header-wrapper .header .mobile-phone-logo{
		display: none;
	}

	/* 头部-电脑端-菜单 */
	.header-wrapper .header .menu-wrapper{
		width: 60%;
		height: 100%;
	}
	
	.header-wrapper .header .menu-wrapper .menu{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	.header-wrapper .header .menu-wrapper .menu .menu-item{
		width: 14.28%;
		position: relative;
	}
	
	.header-wrapper .header .menu-wrapper .menu .menu-item a{
		width: 100%;
		display: block;
		font-size: 16px;
		line-height: 90px;
		text-align: center;
		position: relative;
		color: rgba(255, 255, 255, 1);
	}
	
	.header-wrapper .header .menu-wrapper .menu > .menu-item > a::after{
		content: "";
		width: 0%;
		height: 2.2%;
		display: block;
		transition: all 0.5s ease;
		background: linear-gradient(to right, rgba(28, 31, 134, 1) , rgba(66, 93, 200, 1));
		position: absolute;
		left: 50%;
		top: 76%;
	}

	/* 头部-电脑端-菜单-两层的 （二级） */
	.header-wrapper .header .menu-wrapper .menu .menu-item > .two-layer{
		width: 200%;
		background-color: rgba(255, 255, 255, 0.95);
		position: absolute;
		top: 100%;
		left: -50%;
	}
	
	.header-wrapper .header .menu-wrapper .menu .menu-item > .two-layer .menu-item{
		width: 100%;
	}
	
	.header-wrapper .header .menu-wrapper .menu .menu-item > .two-layer > .menu-item > a{
		width: 90%;
		display: block;
		font-size: 16px;
		text-align: left;
		margin: 0px auto;
		overflow: hidden;
		line-height: 50px;
		white-space: nowrap;
		text-overflow: ellipsis;
		color: rgba(51, 51, 51, 1);
	}

	/* 头部-电脑端-菜单-三层的 （二级） */
	.header-wrapper .header .menu-wrapper .menu .menu-item > .three-layer{
		display: grid;
		padding: 1.5% 8%;
		grid-template-columns: repeat(6, 1fr);
		background-color: rgba(255, 255, 255, 0.95);
		position: absolute;
		top: 100%;
		left: 0px;
		right: 0px;
	}
	
	.header-wrapper .header .menu-wrapper .menu .menu-item > .three-layer > .menu-item{
		width: 80.7%;
		margin: 0 auto;
		overflow: hidden;
		border-right: 1.5px solid rgba(225, 225, 225, 1);
	}
	
	.header-wrapper .header .menu-wrapper .menu .menu-item > .three-layer > .menu-item:last-child{
		border-right: 0px solid rgba(225, 225, 225, 1);
	}
	
	.header-wrapper .header .menu-wrapper .menu .menu-item > .three-layer > .menu-item > a{
		width: 100%;
		display: block;
		font-size: 18px;
		overflow: hidden;
		text-align: left;
		font-weight: bold;
		line-height: 50px;
		position: relative;
		white-space: nowrap;
		text-overflow: ellipsis;
		color: rgba(51, 51, 51, 1);
	}
	
	.header-wrapper .header .menu-wrapper .menu .menu-item > .three-layer > .menu-item > a::after{
		content: "";
		width: 32.559%;
		display: block;
		padding: 0.698% 0%;
		background: linear-gradient(to right, rgba(28, 31, 134, 1) , rgba(66, 93, 200, 1));
		position: absolute;
		left: 0%;
		bottom: 0%;
	}

	/* 头部-电脑端-菜单-三层的 （三级） */
	.header-wrapper .header .menu-wrapper .menu .menu-item > .three-layer > .menu-item > .sub-menu{
		width: 100%;
		margin-top: 4.652%;
	}
	
	.header-wrapper .header .menu-wrapper .menu .menu-item > .three-layer > .menu-item > .sub-menu > .menu-item{
		width: 100%;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}
	
	.header-wrapper .header .menu-wrapper .menu .menu-item > .three-layer > .menu-item > .sub-menu > .menu-item > a{
		display: block;
		font-size: 16px;
		overflow: hidden;
		text-align: left;
		line-height: 40px;
		white-space: nowrap;
		text-overflow: ellipsis;
		color: rgba(51, 51, 51, 1);
	}

	/* 头部-功能区 */
	.header-wrapper .header .functional-area{
		height: 100%;
		display: flex;
		width: 15.173%;
		align-items: center;
		justify-content: flex-end;
	}

	/* 头部-功能区-语言 */
	.header-wrapper .header .functional-area .language{
		width: 45px;
		height: 100%;
		display: flex;
		line-height: 1;
		font-size: 16px;
		align-items: center;
		color: rgba(255, 255, 255, 1);
		justify-content: space-between;
		position: relative;
	}
	
	.header-wrapper .header .functional-area .language .language-name{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	.header-wrapper .header .functional-area .language .language-name samp{
		display: block;
		transition: all 1s;
	}
	
	.header-wrapper .header .functional-area .language .language-menu{
		display: none;
		width: 333.334%;
		text-align: center;
		color: rgba(0, 0, 5, 1);
		background-color: rgba(255, 255, 255, 1);
		position: absolute;
		top: 120%;
		right: -116.667%;
	}
	
	.header-wrapper .header .functional-area .language .language-menu::after{
		content: "";
		width: 0px;
		height: 0px;
		border-top: 5px solid transparent;
		border-left: 5px solid transparent;
		border-bottom: 5px solid rgba(255, 255, 255, 1);
		border-right: 5px solid transparent;
		position: absolute;
		top: -10px;
		right: 46.180%;
	}
	
	.header-wrapper .header .functional-area .language .language-menu .menu-item{
		width: 100%;
		cursor: pointer;
		padding: 11.462% 0%;
	}
	
	.header-wrapper .header .functional-area .language .language-menu .menu-item a{
		color: rgba(0, 0, 5, 1);
	}

	/* 头部-功能区-登陆 */
	.header-wrapper .header .functional-area .login{
		display: flex;
		line-height: 1;
		font-size: 16px;
		margin: 0% 20px;
		align-items: center;
		justify-content: center;
		color: rgba(255, 255, 255, 1);
	}
	
	.header-wrapper .header .functional-area .login samp{
		width: 1px;
		display: block;
		margin: 0% 5px;
		padding: 10% 0%;
		background-color: rgba(255, 255, 255, 1);
	}
	
	.header-wrapper .header .functional-area .login p,
	.header-wrapper .header .functional-area .language p{
		cursor: pointer;
	}
	
	.header-wrapper .header .functional-area .login a{
		display: block;
		color: inherit;
		cursor: pointer;
	}

	/* 头部-功能区-搜索 */
	.header-wrapper .header .functional-area .search{
		width: 32px;
		height: 30px;
		cursor: pointer;
		line-height: 30px;
		border-radius: 8px;
		text-align: center;
		position: relative;
		background-color: rgba(29, 32, 136, 1);
	}
	
	.header-wrapper .header .functional-area .search button{
		font-size: 26px;
		border-width: 0px;
		line-height: 30px;
		color: rgba(255, 255, 255, 1);
		background-color: rgba(0, 0, 0, 0);
	}
	
	.header-wrapper .header .functional-area .search .input-wrapper{
		width: 700%;
		display: none;
		position: absolute;
		top: -1px;
		right: 100%;
	}
	
	.header-wrapper .header .functional-area .search .input-wrapper input{
		width: 85%;
		height: 30px;
		outline: none;
		margin: 0 auto;
		font-size: 14px;
		padding: 0 5px;
		border-style: none;
		border: 1px solid rgba(240, 240, 240, 1);
		background-color: rgba(255, 255, 255, 1);
	}

	/* 头部-功能区-移动端-菜单 */
	.header-wrapper .header .functional-area .menu-h5-wrapper{
		display: none;
		position: relative;
	}
	
	.header-wrapper .header .functional-area .menu-h5-wrapper span{
		font-size: 30px;
		color: rgba(29, 32, 136, 1);
	}
	
	.header-wrapper .header .functional-area .menu-h5-wrapper .menu-h5{
		width: 40%;
		height: 100%;
		transform: translateX(0%);
		transition: all 0.5s ease;
		background-color: rgba(255, 255, 255, 1);
		position: relative;
		position: fixed;
		top: 0%;
		left: -40%;
		z-index: 999;
	}
	
	.header-wrapper .header .functional-area .menu-h5-wrapper .menu-h5 .menu a{
		display: block;
		line-height: 35px;
		color: rgba(0, 0, 0, 1);
	}

	/* 头部-功能区-移动端-菜单-一级 */
	.header-wrapper .header .functional-area .menu-h5-wrapper .menu-h5 .menu > .menu-item > a{
		font-size: 14px;
		padding-left: 8%;
		position: relative;
		border-bottom: 1px solid rgba(242, 242, 242, 1);
	}
	
	.header-wrapper .header .functional-area .menu-h5-wrapper .menu-h5 .menu > .menu-item > a::after{
		width: 7px;
		height: 7px;
		content: "";
		border-style: solid;
		transform: rotate(45deg);
		transition: all 0.5s ease;
		border-width: 1.5px 1.5px 0px 0px;
		background-color: rgba(0, 0, 0, 0);
		border-color: rgba(150, 150, 150, 1);
		position: absolute;
		top: 40%;
		left: 92%;
	}

	/* 头部-功能区-移动端-菜单-二级 */
	.header-wrapper .header .functional-area .menu-h5-wrapper .menu-h5 .menu > .menu-item > .sub-menu{
		display: none;
	}
	
	.header-wrapper .header .functional-area .menu-h5-wrapper .menu-h5 .menu > .menu-item > .sub-menu > .menu-item > a{
		font-size: 13px;
		padding-left: 16%;
		position: relative;
	}
	
	.header-wrapper .header .functional-area .menu-h5-wrapper .menu-h5 .menu > .menu-item > .sub-menu > .menu-item > a::after{
		width: 7px;
		height: 7px;
		content: "";
		border-style: solid;
		transform: rotate(45deg);
		transition: all 0.5s ease;
		border-width: 1.5px 1.5px 0px 0px;
		background-color: rgba(0, 0, 0, 0);
		border-color: rgba(150, 150, 150, 1);
		position: absolute;
		top: 41.250%;
		left: 92%;
	}

	/* 头部-功能区-移动端-菜单-三级 */
	.header-wrapper .header .functional-area .menu-h5-wrapper .menu-h5 .menu > .menu-item > .sub-menu > .menu-item > .sub-menu{
		display: none;
	}
	
	.header-wrapper .header .functional-area .menu-h5-wrapper .menu-h5 .menu > .menu-item > .sub-menu > .menu-item > .sub-menu a{
		font-size: 12px;
		padding-left: 24%;
	}

	/* 头部悬停项 ,标题滚动项 */
	.header-hover-item,
	.header-scroll-item{
		background-color: rgba(255, 255, 255, 1);
		border-bottom:1px solid rgba(225, 225, 225, 1);
	}

	/* 头部-电脑端-菜单-第一层选中 */
	.header-wrapper .header .menu-wrapper .menu > .menu-item.current-menu-item > a::after{
		content: "";
		width: 50%;
		height: 2.2%;
		display: block;
		background: linear-gradient(to right, rgba(28, 31, 134, 1) , rgba(66, 93, 200, 1));
		position: absolute;
		left: 25%;
		top: 76%;
	}

	/* 头部-电脑端-菜单-第一层悬停项 */
	.header-wrapper .header .menu-wrapper .menu .menu-item .top-layer-hover-item{
		color: rgba(29, 32, 136, 1);
	}
	
	.header-wrapper .header .menu-wrapper .menu .menu-item .top-layer-hover-item::after{
		width: 50%;
		left: 25%;
	}

	/* 头部-电脑端-菜单-第二层悬停项 */
	.header-wrapper .header .menu-wrapper .menu .menu-item > .two-layer > .menu-item > .two-layer-hover-item{
		color: rgba(29, 32, 136, 1);
	}

	/* 头部-电脑端-菜单-第三层悬停项 */
	.header-wrapper .header .menu-wrapper .menu .menu-item > .three-layer > .menu-item > .sub-menu > .menu-item > .three-layer-hover-item{
		color: rgba(29, 32, 136, 1);
	}

	/* 头部悬停项 修改颜色,标题滚动项 修改字体颜色 */
	.header-hover-item .header .functional-area .login,
	.header-scroll-item .header .functional-area .login,
	.header-hover-item .header .functional-area .language,
	.header-scroll-item .header .functional-area .language,
	.header-hover-item .header .menu-wrapper .menu .menu-item a,
	.header-scroll-item .header .menu-wrapper .menu .menu-item a,
	.header-hover-item .header .functional-area .menu-h5-wrapper span,
	.header-scroll-item .header .functional-area .menu-h5-wrapper span,
	.header-hover-item .header .functional-area .language .language-name samp,
	.header-scroll-item .header .functional-area .language .language-name samp{
		color: rgba(0, 0, 0, 1);
	}

	/* 头部悬停项 修改颜色,标题滚动项 修改背景颜色 */
	.header-hover-item .header .functional-area .login samp,
	.header-scroll-item .header .functional-area .login samp{
		background-color: rgba(0, 0, 0, 1);
	}

	/* 头部-电脑端-语言悬停 */
	.header-wrapper .header .functional-area .language .language-menu .menu-item.current-hover-item a{
		color: rgba(29, 32, 136, 1);
	}

	/* 头部-电脑端-语言-三角-动画 */
	.header .functional-area .language .language-name samp.triangle-show{
		transform: rotate(-180deg);
		-webkit-transform: rotate(-180deg);
	}

	/* 头部-电脑端-搜索悬停 */
	.header-wrapper .header .functional-area .search .input-wrapper.current-hover-item{
		display: block;
	}

	/* 头部-功能区-移动端-菜单-选中 */
	.header-wrapper .header .functional-area .menu-h5-wrapper .menu-h5 .menu > .menu-item.current-menu-item > a{
		color: rgba(29, 32, 136, 1);
	}

	/* 头部-功能区-移动端-菜单-打开菜单 */
	.header-wrapper .header .functional-area .menu-h5-wrapper .menu-h5.current-menu-expand-item{
		left: 0%;
	}

	/* 头部-功能区-移动端-菜单-展开二级 */
	.header-wrapper .header .functional-area .menu-h5-wrapper .menu-h5 .menu > .menu-item.current-menu-expand-item > a::after{
		transform: rotate(135deg);
	}

	/* 头部-功能区-移动端-菜单-展开三级 */
	.header-wrapper .header .functional-area .menu-h5-wrapper .menu-h5 .menu > .menu-item > .sub-menu > .menu-item.current-menu-expand-item > a::after{
		transform: rotate(135deg);
	}

/* 底部 */
	.footer-wrapper{
		width: 100%;
		background-image: url('images/background-10.jpg');
		background-size: 100% 100%;
		background-repeat:no-repeat;
		background-position: center;
	}
	
	.footer-wrapper .footer{
		width: 100%;
		padding: 2.628% 0% 3.153%;
		border-bottom: 1px solid rgba(226, 226, 226, 1);
	}
	
	.footer-wrapper .footer .upper{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	/* 底部-logo */
	.footer-wrapper .footer .upper .logo{
		width: 22.069%;
	}
	
	.footer-wrapper .footer .upper .logo img{
		width: 100%;
		height: 100%;
	}

	/* 底部-二维码 */
	.footer-wrapper .footer .upper .qr-code{
		width: 12.414%;
	}
	
	.footer-wrapper .footer .upper .qr-code .image{
		width: 72.223%;
		margin: 0 auto;
	}
	
	.footer-wrapper .footer .upper .qr-code .image img{
		width: 100%;
		height: 100%;
	}
	
	.footer-wrapper .footer .upper .qr-code .text{
		font-size: 18px;
		text-align: center;
		margin-top: 5.556%;
		color: rgba(225, 225, 225, 1);
	}

	/* 底部-联系方式 */
	.footer-wrapper .footer .centre{
		font-size: 16px;
		text-align: right;
		line-height: 28px;
		margin-top: 1.380%;
		color: rgba(255, 255, 255, 1);
	}
	
	.footer-wrapper .footer .below{
		width: 100%;
		display: flex;
		margin-top: 1.380%;
		align-items: center;
		justify-content: space-between;
	}

	/* 底部-菜单 */
	.footer-wrapper .footer .below .menu{
		width: 60%;
	}
	
	.footer-wrapper .footer .below .menu ul{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	.footer-wrapper .footer .below .menu ul li{
		width: 16.6%;
	}
	
	.footer-wrapper .footer .below .menu ul li a{
		width: 100%;
		display: block;
		font-size: 16px;
		text-align: center;
		color: rgba(255, 255, 255, 1);
	}

	/* 底部-联系我们 */
	.footer-wrapper .footer .below .contac-us{
		width: 12%;
	}
	
	.footer-wrapper .footer .below .contac-us ul{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	.footer-wrapper .footer .below .contac-us ul li{
		width: 15.625%;
		padding: 7.813% 0%;
		border-radius: 50%;
	}
	
	.footer-wrapper .footer .below .contac-us ul li a{
		width: 100%;
		display: block;
		padding: 50% 0%;
		border-radius: 50%;
		transition: all 0.6s;
		background-size: 100% 100%;
		background-repeat:no-repeat;
		background-position: center;
	}

	/* 底部-版权 */
	.footer-wrapper .copyright{
		width: 100%;
		display: flex;
		padding: 2.864% 0%;
		align-items: center;
		justify-content: center;
	}
	
	.footer-wrapper .copyright .text a{
		line-height: 1;
		font-size: 16px;
		color: rgba(225, 225, 225, 1);
	}
	
	.footer-wrapper .copyright .line{
		line-height: 1;
		font-size: 16px;
		margin: 0% 1.577%;
		color: rgba(225, 225, 225, 1);
	}

	/* 底部-菜单-悬停 */
	.footer-wrapper .footer .below .menu ul li .footer-menu-hover-item{
		color: rgba(236, 105, 1, 1);
	}

	/* 联系-我们-悬停 */
	.footer-wrapper .footer .below .contac-us ul li .contac-us-hover-item{
		transform: scale(1.2);
	}

/* 响应 1680 */
@media screen and (max-width: 1680px) {
/* 头部 */
	.header-wrapper .header{
		height: 80px;
	}

	/* 头部-logo */

	/* 头部-电脑端-菜单 */
	.header-wrapper .header .menu-wrapper .menu .menu-item a{
		font-size: 15px;
		line-height: 80px;
	}

	/* 头部-电脑端-菜单-两层的 （二级） */
	.header-wrapper .header .menu-wrapper .menu .menu-item > .two-layer > .menu-item > a{
		font-size: 15px;
		line-height: 45px;
	}

	/* 头部-电脑端-菜单-三层的 （二级） */
	.header-wrapper .header .menu-wrapper .menu .menu-item > .three-layer > .menu-item > a{
		font-size: 17px;
		line-height: 45px;
	}

	/* 头部-电脑端-菜单-三层的 （三级） */
	.header-wrapper .header .menu-wrapper .menu .menu-item > .three-layer > .menu-item > .sub-menu > .menu-item > a{
		font-size: 15px;
		line-height: 35px;
	}

	/* 头部-功能区 */

	/* 头部-功能区-语言 */
	.header-wrapper .header .functional-area .language{
		width: 42.5px;
		font-size: 15px;
	}

	/* 头部-功能区-登陆 */
	.header-wrapper .header .functional-area .login{
		font-size: 15px;
		margin: 0% 17.5px;
	}

	/* 头部-功能区-搜索 */
	.header-wrapper .header .functional-area .search{
		width: 30px;
		height: 28px;
		line-height: 28px;
		border-radius: 7px;
	}
	
	.header-wrapper .header .functional-area .search button{
		font-size: 24px;
		line-height: 28px;
	}
	
	.header-wrapper .header .functional-area .search .input-wrapper input{
		height: 28px;
		font-size: 13px;
	}

	/* 头部-功能区-移动端-菜单 */

	/* 头部-功能区-移动端-菜单-一级 */

	/* 头部-功能区-移动端-菜单-二级 */

	/* 头部-功能区-移动端-菜单-三级 */

	/* 头部悬停项 ,标题滚动项 */

	/* 头部-电脑端-菜单-第一层选中 */

	/* 头部-电脑端-菜单-第一层悬停项 */

	/* 头部-电脑端-菜单-第二层悬停项 */

	/* 头部-电脑端-菜单-第三层悬停项 */

	/* 头部悬停项 修改颜色,标题滚动项 修改字体颜色 */

	/* 头部悬停项 修改颜色,标题滚动项 修改背景颜色 */

	/* 头部-电脑端-语言悬停 */

	/* 头部-电脑端-语言-三角-动画 */

	/* 头部-电脑端-搜索悬停 */

	/* 头部-功能区-移动端-菜单-选中 */

	/* 头部-功能区-移动端-菜单-打开菜单 */

	/* 头部-功能区-移动端-菜单-展开二级 */

	/* 头部-功能区-移动端-菜单-展开三级 */

/* 底部 */

	/* 底部-logo */

	/* 底部-二维码 */
	.footer-wrapper .footer .upper .qr-code .text{
		font-size: 16px;
	}

	/* 底部-联系方式 */
	.footer-wrapper .footer .centre{
		font-size: 15px;
		line-height: 26px;
	}

	/* 底部-菜单 */
	.footer-wrapper .footer .below .menu ul li a{
		font-size: 15px;
	}

	/* 底部-联系我们 */

	/* 底部-版权 */
	.footer-wrapper .copyright .text a{
		font-size: 15px;
	}
	
	.footer-wrapper .copyright .line{
		font-size: 15px;
	}
}

/* 响应 1440 */
@media screen and (max-width: 1440px) {
/* 视频-公用-start */
	.video-js,
	.video-js .vjs-tech,
	.video-js .vjs-poster{
		border-radius: 10px;
	}

	.vjs-has-started .vjs-control-bar{
		border-radius: 0px 0px 10px 10px;
	}

/* 视频-公用-end */

/* 头部 */
	.header-wrapper .header{
		height: 70px;
	}

	/* 头部-logo */

	/* 头部-电脑端-菜单 */
	.header-wrapper .header .menu-wrapper .menu .menu-item a{
		font-size: 14px;
		line-height: 70px;
	}

	/* 头部-电脑端-菜单-两层的 （二级） */
	.header-wrapper .header .menu-wrapper .menu .menu-item > .two-layer > .menu-item > a{
		font-size: 14px;
		line-height: 40px;
	}

	/* 头部-电脑端-菜单-三层的 （二级） */
	.header-wrapper .header .menu-wrapper .menu .menu-item > .three-layer > .menu-item > a{
		font-size: 16px;
		line-height: 40px;
	}

	/* 头部-电脑端-菜单-三层的 （三级） */
	.header-wrapper .header .menu-wrapper .menu .menu-item > .three-layer > .menu-item > .sub-menu > .menu-item > a{
		font-size: 14px;
		line-height: 30px;
	}

	/* 头部-功能区 */

	/* 头部-功能区-语言 */
	.header-wrapper .header .functional-area .language{
		width: 40px;
		font-size: 14px;
	}

	/* 头部-功能区-登陆 */
	.header-wrapper .header .functional-area .login{
		font-size: 14px;
		margin: 0% 15px;
	}

	/* 头部-功能区-搜索 */
	.header-wrapper .header .functional-area .search{
		width: 28px;
		height: 26px;
		line-height: 26px;
		border-radius: 4px;
	}
	
	.header-wrapper .header .functional-area .search button{
		font-size: 22px;
		line-height: 26px;
	}
	
	.header-wrapper .header .functional-area .search .input-wrapper input{
		height: 26px;
		font-size: 12px;
	}

	/* 头部-功能区-移动端-菜单 */

	/* 头部-功能区-移动端-菜单-一级 */

	/* 头部-功能区-移动端-菜单-二级 */

	/* 头部-功能区-移动端-菜单-三级 */

	/* 头部悬停项 ,标题滚动项 */

	/* 头部-电脑端-菜单-第一层选中 */

	/* 头部-电脑端-菜单-第一层悬停项 */

	/* 头部-电脑端-菜单-第二层悬停项 */

	/* 头部-电脑端-菜单-第三层悬停项 */

	/* 头部悬停项 修改颜色,标题滚动项 修改字体颜色 */

	/* 头部悬停项 修改颜色,标题滚动项 修改背景颜色 */

	/* 头部-电脑端-语言悬停 */

	/* 头部-电脑端-语言-三角-动画 */

	/* 头部-电脑端-搜索悬停 */

	/* 头部-功能区-移动端-菜单-选中 */

	/* 头部-功能区-移动端-菜单-打开菜单 */

	/* 头部-功能区-移动端-菜单-展开二级 */

	/* 头部-功能区-移动端-菜单-展开三级 */

/* 底部 */

	/* 底部-logo */

	/* 底部-二维码 */
	.footer-wrapper .footer .upper .qr-code .text{
		font-size: 14px;
	}

	/* 底部-联系方式 */
	.footer-wrapper .footer .centre{
		font-size: 14px;
		line-height: 24px;
	}

	/* 底部-菜单 */
	.footer-wrapper .footer .below .menu ul li a{
		font-size: 14px;
	}

	/* 底部-联系我们 */

	/* 底部-版权 */
	.footer-wrapper .copyright .text a{
		font-size: 14px;
	}
	
	.footer-wrapper .copyright .line{
		font-size: 14px;
	}
}

/* 响应 1280 */
@media screen and (max-width: 1280px) {
/* 头部 */
	.header-wrapper .header{
		height: 60px;
	}

	/* 头部-logo */

	/* 头部-电脑端-菜单 */
	.header-wrapper .header .menu-wrapper .menu .menu-item a{
		font-size: 13px;
		line-height: 60px;
	}

	/* 头部-电脑端-菜单-两层的 （二级） */
	.header-wrapper .header .menu-wrapper .menu .menu-item > .two-layer > .menu-item > a{
		font-size: 13px;
		line-height: 35px;
	}

	/* 头部-电脑端-菜单-三层的 （二级） */
	.header-wrapper .header .menu-wrapper .menu .menu-item > .three-layer > .menu-item > a{
		font-size: 15px;
		line-height: 35px;
	}

	/* 头部-电脑端-菜单-三层的 （三级） */
	.header-wrapper .header .menu-wrapper .menu .menu-item > .three-layer > .menu-item > .sub-menu > .menu-item > a{
		font-size: 13px;
	}

	/* 头部-功能区 */
	.header-wrapper .header .functional-area{
		width: 20%;
	}

	/* 头部-功能区-语言 */
	.header-wrapper .header .functional-area .language{
		width: 37.5px;
		font-size: 13px;
	}

	/* 头部-功能区-登陆 */
	.header-wrapper .header .functional-area .login{
		font-size: 13px;
	}

	/* 头部-功能区-搜索 */
	.header-wrapper .header .functional-area .search{
		width: 26px;
		height: 24px;
		line-height: 24px;
		border-radius: 4px;
	}
	
	.header-wrapper .header .functional-area .search button{
		font-size: 20px;
		line-height: 24px;
	}
	
	.header-wrapper .header .functional-area .search .input-wrapper input{
		height: 24px;
	}

	/* 头部-功能区-移动端-菜单 */

	/* 头部-功能区-移动端-菜单-一级 */

	/* 头部-功能区-移动端-菜单-二级 */

	/* 头部-功能区-移动端-菜单-三级 */

	/* 头部悬停项 ,标题滚动项 */

	/* 头部-电脑端-菜单-第一层选中 */

	/* 头部-电脑端-菜单-第一层悬停项 */

	/* 头部-电脑端-菜单-第二层悬停项 */

	/* 头部-电脑端-菜单-第三层悬停项 */

	/* 头部悬停项 修改颜色,标题滚动项 修改字体颜色 */

	/* 头部悬停项 修改颜色,标题滚动项 修改背景颜色 */

	/* 头部-电脑端-语言悬停 */

	/* 头部-电脑端-语言-三角-动画 */

	/* 头部-电脑端-搜索悬停 */

	/* 头部-功能区-移动端-菜单-选中 */

	/* 头部-功能区-移动端-菜单-打开菜单 */

	/* 头部-功能区-移动端-菜单-展开二级 */

	/* 头部-功能区-移动端-菜单-展开三级 */

/* 底部 */

	/* 底部-logo */

	/* 底部-二维码 */
	.footer-wrapper .footer .upper .qr-code{
		width: 13.111%;
	}
	
	.footer-wrapper .footer .upper .qr-code .text{
		font-size: 12px;
	}

	/* 底部-联系方式 */
	.footer-wrapper .footer .centre{
		font-size: 13px;
		line-height: 22px;
	}

	/* 底部-菜单 */
	.footer-wrapper .footer .below .menu ul li a{
		font-size: 13px;
	}

	/* 底部-联系我们 */

	/* 底部-版权 */
	.footer-wrapper .copyright .text a{
		font-size: 13px;
	}
	
	.footer-wrapper .copyright .line{
		font-size: 13px;
	}
}

/* 响应 1000 */
@media screen and (max-width: 1000px) {
/* 视频-公用-start */
	.video-js,
	.video-js .vjs-tech,
	.video-js .vjs-poster{
		border-radius: 5px;
	}

	.vjs-has-started .vjs-control-bar{
		border-radius: 0px 0px 5px 5px;
	}

/* 视频-公用-end */

/* 图片放大-公用的-start */
	#ip-img-preview{
		width: 70%;
	}

	#ip-left{
		width: 25px;
		height: 25px;
		display: none;
		cursor: pointer;
		z-index:19941207;
		position:fixed;
		top: 50%;
		left: 10px;
	}

	#ip-left div{
		width: 100%;
		height: 100%;
		background: url('images/icon-left.png') no-repeat center;
		background-size: 100% 100%;
	}

	#ip-right{
		width: 25px;
		height: 25px;
		display: none;
		cursor: pointer;
		z-index:19941207;
		position:fixed;
		top: 50%;
		right: 10px;
	}

	#ip-right div{
		width: 100%;
		height: 100%;
		background: url('images/icon-right.png') no-repeat center;
		background-size: 100% 100%;
	}

/* 图片放大-公用的-end */

/* 头部 */

	/* 头部-logo */
	.header-wrapper .header .logo{
		width: 19.687%;
	}

	/* 头部-电脑端-菜单 */
	.header-wrapper .header .menu-wrapper{
		display: none;
	}

	/* 头部-电脑端-菜单-两层的 （二级） */

	/* 头部-电脑端-菜单-三层的 （二级） */

	/* 头部-电脑端-菜单-三层的 （三级） */

	/* 头部-功能区 */
	.header-wrapper .header .functional-area{
		width: 42.723%;
	}

	/* 头部-功能区-语言 */
	.header-wrapper .header .functional-area .language{
		width: 35px;
		font-size: 12px;
	}

	/* 头部-功能区-登陆 */
	.header-wrapper .header .functional-area .login{
		font-size: 12px;
	}

	/* 头部-功能区-搜索 */
	.header-wrapper .header .functional-area .search{
		display: none;
	}

	/* 头部-功能区-移动端-菜单 */
	.header-wrapper .header .functional-area .menu-h5-wrapper{
		display: block;
	}

	/* 头部-功能区-移动端-菜单-一级 */

	/* 头部-功能区-移动端-菜单-二级 */

	/* 头部-功能区-移动端-菜单-三级 */

	/* 头部悬停项 ,标题滚动项 */

	/* 头部-电脑端-菜单-第一层选中 */

	/* 头部-电脑端-菜单-第一层悬停项 */

	/* 头部-电脑端-菜单-第二层悬停项 */

	/* 头部-电脑端-菜单-第三层悬停项 */

	/* 头部悬停项 修改颜色,标题滚动项 修改字体颜色 */

	/* 头部悬停项 修改颜色,标题滚动项 修改背景颜色 */

	/* 头部-电脑端-语言悬停 */

	/* 头部-电脑端-语言-三角-动画 */

	/* 头部-电脑端-搜索悬停 */

	/* 头部-功能区-移动端-菜单-选中 */

	/* 头部-功能区-移动端-菜单-打开菜单 */

	/* 头部-功能区-移动端-菜单-展开二级 */

	/* 头部-功能区-移动端-菜单-展开三级 */

/* 底部 */

	/* 底部-logo */
	.footer-wrapper .footer .upper .logo{
		width: 25.634%;
	}

	/* 底部-二维码 */
	.footer-wrapper .footer .upper .qr-code{
		width: 17.089%;
	}

	/* 底部-联系方式 */
	.footer-wrapper .footer .centre{
		font-size: 12px;
		line-height: 20px;
		text-align: center;
		margin-top: 2.615%;
	}

	/* 底部-菜单 */
	.footer-wrapper .footer .below .menu ul li a{
		font-size: 12px;
	}

	/* 底部-联系我们 */

	/* 底部-版权 */
	.footer-wrapper .copyright .text a{
		font-size: 12px;
	}
	
	.footer-wrapper .copyright .line{
		font-size: 12px;
	}
}

/* 响应 750 */
@media screen and (max-width: 750px) {
/* css-公用的-start */
	.w {
		width: 90%;
	}

/* css-公用的-end */

/* 头部 */
	.header-wrapper{
		background-color: rgba(255, 255, 255, 1);
		border-bottom: 1px solid rgba(225, 225, 225, 1);
	}

	/* 头部-logo */
	.header-wrapper .header .logo{
		width: 36.602%;
	}
	
	.header-wrapper .header .computer-logo{
		display: none;
	}
	
	.header-wrapper .header .mobile-phone-logo{
		display: inline-block;
	}

	/* 头部-电脑端-菜单 */

	/* 头部-电脑端-菜单-两层的 （二级） */

	/* 头部-电脑端-菜单-三层的 （二级） */

	/* 头部-电脑端-菜单-三层的 （三级） */

	/* 头部-功能区 */
	.header-wrapper .header .functional-area{
		width: 60%;
	}

	/* 头部-功能区-语言 */
	.header-wrapper .header .functional-area .language{
		color: rgba(0, 0, 0, 1);
	}

	/* 头部-功能区-登陆 */
	.header-wrapper .header .functional-area .login{
		color: rgba(0, 0, 0, 1);
	}
	
	.header-wrapper .header .functional-area .login samp{
		background-color: rgba(0, 0, 0, 1);
	}

	/* 头部-功能区-搜索 */

	/* 头部-功能区-移动端-菜单 */
	.header-wrapper .header .functional-area .menu-h5-wrapper span{
		color: rgba(0, 0, 0, 1);
	}
	
	.header-wrapper .header .functional-area .menu-h5-wrapper .menu-h5{
		width: 70%;
		left: -70%;
	}

	/* 头部-功能区-移动端-菜单-一级 */

	/* 头部-功能区-移动端-菜单-二级 */

	/* 头部-功能区-移动端-菜单-三级 */

	/* 头部悬停项 ,标题滚动项 */

	/* 头部-电脑端-菜单-第一层选中 */

	/* 头部-电脑端-菜单-第一层悬停项 */

	/* 头部-电脑端-菜单-第二层悬停项 */

	/* 头部-电脑端-菜单-第三层悬停项 */

	/* 头部悬停项 修改颜色,标题滚动项 修改字体颜色 */

	/* 头部悬停项 修改颜色,标题滚动项 修改背景颜色 */

	/* 头部-电脑端-语言悬停 */

	/* 头部-电脑端-语言-三角-动画 */

	/* 头部-电脑端-搜索悬停 */

	/* 头部-功能区-移动端-菜单-选中 */

	/* 头部-功能区-移动端-菜单-打开菜单 */

	/* 头部-功能区-移动端-菜单-展开二级 */

	/* 头部-功能区-移动端-菜单-展开三级 */

/* 底部 */
	.footer-wrapper .footer .upper{
		display: block;
	}

	/* 底部-logo */
	.footer-wrapper .footer .upper .logo{
		width: 50%;
		margin: 0% auto;
	}

	/* 底部-二维码 */
	.footer-wrapper .footer .upper .qr-code{
		width: 38.195%;
		margin: 5.229% auto 0%;
	}
	
	.footer-wrapper .footer .upper .qr-code .image{
		width: 54.760%;
	}

	/* 底部-联系方式 */

	/* 底部-菜单 */
	.footer-wrapper .footer .below{
		display: none;
	}

	/* 底部-联系我们 */

	/* 底部-版权 */
	.footer-wrapper .copyright p{
		display: none;
	}
	
	.footer-wrapper .copyright p:first-child{
		display: block;
		font-size: 12px;
	}
}