.messageBtn {
	position: fixed;
	right: 0px;
	bottom: 20%;
	width: 80px;
	height: 40px;
	font-size: 14px;
	line-height: 40px;
	text-align: center;
	border-radius: 50px 0 0 50px;
	background-color: #d5e1f1;
	z-index: 999;
	cursor: pointer;
}

* {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	color: #333
}

p {
	margin: 0 !important;
	padding: 0 !important;
}

ul {
	padding: 0;
}

ul li {
	list-style: none;
}

.copyTips {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	margin: auto;
	width: 300px;
	height: 100px;
	line-height: 100px;
	border-radius: 8px;
	background-color: rgba(51, 51, 51, 1);
	color: rgba(255, 255, 255, 1);
	font-size: 16px;
	text-align: center;
	font-family: Roboto;
	z-index: 10;
	display: none;
}

header {
	background-color: #E9F0F9;
}

header .topText {
	height: 50px;
}

header .topText-xs {
	height: 44px;
	line-height: 44px;
	color: rgba(16, 16, 16, 1);
	font-size: 16px;
	text-align: center;
	font-family: Arial;
}

header .logoBox {
	height: 75px;
	position: relative;
}

header .logoBox .logoImg {
	width: 20%;
}

header .logoBox .nav {
	display: flex;
	width: 60%;
}

header .logoBox .nav .nav-item {
	flex: 1;
	padding: 0 5px;
	text-align: center;
	height: 75px;
	overflow: hidden;
	box-sizing: border-box;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}

header .logoBox .nav .nav-item text {
	display: block;
}

header .logoBox .nav .nav-item text:nth-of-type(2) {
	font-size: 12px;
}

header .logoBox .nav .nav-item-actived {
	position: relative;
	border-bottom: 2px solid rgba(4, 64, 126, 1);
}

header .logoBox .nav .nav-item-actived text {
	color: #04407E;
}

header .logoBox .nav .nav-item-actived::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0px;
	right: 0px;
	margin: auto;
	width: 0;
	height: 0;
	border: 15px solid;
	border-color: transparent transparent #04407e transparent;
}

header .logoBox .nav .nav-item .hoverBox {
	position: fixed;
	left: 0px;
	right: 0px;
	margin: auto;
	top: 125px;
	width: calc(100vw - 20px);
	height: 70px;
	border-radius: 0px 30px 0px 30px;
	background-color: rgba(4, 64, 126, 1);
	text-align: center;
	z-index: 10;
	display: none;
}

header .logoBox .nav .nav-item:hover .hoverBox {
	display: flex;
}

header .logoBox .nav .nav-item:hover {
	color: rgba(4, 64, 126, 1);
}

header .logoBox .nav .nav-item .oneItem {
	transition: all 0.3s;
}

header .logoBox .nav .nav-item .oneItem text:nth-of-type(1) {
	font-size: 18px;
}

header .logoBox .nav .nav-item:hover .oneItem {
	transform: translateY(-5px);
}

header .logoBox .nav .nav-item .hoverBox span {
	border-right: 1px solid #fff;
	color: #fff;
	padding: 0 10px;
	height: 20px;
	line-height: 20px;
	font-size: 16px;
	text-align: left;
	font-family: SourceHanSansSC-extraLight;
}

header .logoBox .nav .nav-item .hoverBox span:hover {
	color: rgba(221, 155, 104, 1);
}

header .logoBox .nav .nav-item .hoverBox span:nth-last-of-type(1) {
	border: none;
	margin-right: none;
}

header .logoBox .navBtn {
	width: 25px;
}

header .topText .leftText,
header .topText .rightText {
	color: rgba(51, 51, 51, 1);
	font-size: 14px;
	font-family: SourceHanSansSC-regular
}

.sideMenuMask {
	width: 100vw;
	height: calc(100vh - 119px);
	top: 75px;
	left: 0px;
	background-color: rgba(51, 51, 51, 0.5);
	position: absolute;
	z-index: 10;
}

.dis_none {
	display: none;
}

.sideMenu {
	width: 60%;
	height: 100%;
	overflow-y: auto;
	background-color: #E9F0F9;
}

.sideMenu h3 {
	height: 42px;
	line-height: 42px;
	padding-left: 10px;
	border-top: 1px solid #e3e3e3;
	background: #f4f4f4;
	cursor: pointer;
	font-family: 'Microsoft YaHei';
	font-size: 14px;
	color: #333;
	background-color: #fff;
	margin: 0;
	position: relative;
}

.sideMenu h3 .menu_icon {
	position: absolute;
	width: 20px;
	height: 20px;
	top: 0px;
	bottom: 0px;
	right: 5px;
	background-image: url('../image/icon/menu_icon.png');
	background-size: 100% 100%;
	margin: auto;
	transition: all 0.3s;
}

.sideMenu .nLi.on .sub {
	display: block;
}

.sideMenu .nLi.on h3 .menu_icon {
	transform: rotate(90deg);
}

.sideMenu .nLi .sub {
	color: #999;
	display: none;
}

.sideMenu .nLi .sub li {
	height: 30px;
	line-height: 30px;
	list-style: none;
	padding-left: 20px;
}

.sideMenu .nLi .sub li a {
	display: block;
	width: 100%;
	height: 100%;
	font-family: 'Microsoft YaHei';
	font-size: 14px;
	color: #333;
	text-decoration: none;
	padding: 0 25px;
	box-sizing: border-box;
}

.sideMenu .nLi .sub li a:hover {
	background: #eee;
}

header .topText .rightText span {
	color: rgba(51, 51, 51, 1);
	font-weight: bolder;
	font-size: 18px;
	font-family: PMZDBiaoTi-regular;
}

.bottomBox {
	background-color: rgba(233, 240, 249, 1);
}

.bottomBox .bottomBox_text {
	padding: 15px 0;
	color: rgba(51, 51, 51, 1);
	font-size: 12px;
	font-weight: bolder;
	text-align: center;
	font-family: SourceHanSansSC-regular;
}

.footerBox {
	background-color: rgba(51, 51, 51, 1);
}

.footerBox .footer_infoBox {
	height: 60px;
	display: flex;
	align-items: center;
}

.footerBox .footer_infoBox .oneItem {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.footerBox .footer_infoBox .oneItem .icon {
	width: 25px;
	height: 25px;
}

.footerBox .footer_infoBox .oneItem .icon_none {
	display: none;
}

.footerBox .footer_infoBox .oneItem .text {
	height: 25px;
	line-height: 25px;
	color: #fff;
	font-size: 14px;
	text-align: center;
	font-family: Arial;
}

.footerBox .footer_infoBox .oneItem.active .text {
	color: rgba(221, 155, 104, 1);
}

.footer-lgBox {
	background: linear-gradient(to bottom, white 90px, #333 0);
}

.footer-lgBox .messageBox {
	padding: 0 30px;
	height: 180px;
	border-radius: 16px;
	background-color: rgba(4, 64, 126, 1);
	position: relative;
	display: flex;
	align-items: center;
}

.footer-lgBox .messageBox .messageTips {
	display: none;
	position: absolute;
	left: 0px;
	top: -70px;
	width: 300px;
	height: 70px;
	line-height: 60px;
	background-image: url('../image/icon/alert_ly_ts.png');
	background-size: 100% 100%;
	color: rgba(255, 255, 255, 1);
	font-size: 16px;
	text-align: center;
	font-family: Roboto;
	transition: all 0.3s;
}

.messageTips_show {
	display: block !important;
	animation: messageTips_showAni 0.5s 1 linear;
}

@keyframes messageTips_showAni {
	0% {
		opacity: 0;
		transform: translateY(-5px);
	}

	100% {
		opacity: 1;
		transform: 0px;
	}
}

.footer-lgBox .messageBox .leftBox {
	width: 60%;
}

.footer-lgBox .messageBox .leftBox .oneItem {
	height: 50px;
	background-color: rgba(255, 255, 255, 1);
	padding: 0 0 0 8px;
	margin-bottom: 20px;
}

.footer-lgBox .messageBox .leftBox .oneItem2 {
	margin-bottom: 0px;
}

.footer-lgBox .messageBox .leftBox .oneItem .icon {
	width: 20px;
	height: 20px;
}

.footer-lgBox .messageBox .leftBox .oneItem span {
	padding: 0 5px 0 2px;
	font-size: 14px;
	border-right: 1px solid #101010;
}

.footer-lgBox .messageBox .leftBox .oneItem input {
	flex: 1;
	margin-left: 5px;
	border: none;
	outline: none;
}

.footer-lgBox .messageBox .leftBox .code {
	height: 50px;
}

.footer-lgBox .messageBox .leftBox .submitBox {
	margin-left: 10px;
	width: 110px;
	height: 50px;
	line-height: 50px;
	background-color: rgba(228, 197, 162, 1);
	color: rgba(16, 16, 16, 1);
	font-size: 14px;
	text-align: center;
	font-family: Roboto;
}

.footer-lgBox .messageBox .rightBox img {
	padding: 10px;
	background-color: #fff;
	width: 120px;
	margin-right: 20px;
}

.footer-lgBox .messageBox .rightBox text {
	color: rgba(255, 255, 255, 1);
	font-size: 14px;
	font-weight: bolder;
	text-align: center;
	font-family: SourceHanSansSC-regular;
	writing-mode: vertical-lr;
}

.footer-lgBox .footer_bottom {
	margin-top: 80px;
}

.footer-lgBox .footer_bottom .title {
	color: rgba(255, 255, 255, 1);
	font-size: 20px;
	font-weight: bolder;
	text-align: left;
	font-family: SourceHanSansSC-bold;
}

.footer-lgBox .footer_bottom .footer_bottom_ul {
	margin-top: 35px;
}

.footer-lgBox .footer_bottom .footer_bottom_ul li {
	color: rgba(223, 223, 223, 1.0);
	font-size: 14px;
	text-align: left;
	font-family: SourceHanSansSC-extraLight;
	margin-bottom: 10px;
	cursor: pointer;
}

.footer-lgBox .footer_bottom .p1 {
	line-height: 19px;
	color: rgba(223, 223, 223, 1.0);
	font-size: 14px;
	text-align: right;
	font-family: SourceHanSansSC-regular;
	margin-bottom: 5px !important;
}

.footer-lgBox .footer_bottom .p2 {
	color: rgba(223, 223, 223, 1.0);
	font-size: 28px;
	font-weight: bolder;
	text-align: right;
	font-family: PMZDBiaoTi-regular;
	margin-bottom: 10px !important;
}

.footer-lgBox .copy {
	height: 90px;
	border-top: 1px solid rgba(187, 187, 187, 1);
	line-height: 90px;
	color: rgba(206, 206, 206, 1);
	font-size: 14px;
	text-align: center;
	font-family: SourceHanSansSC-regular;
}

.rightSlide {
	position: fixed;
	right: 20px;
	top: 60%;
	width: 60px;
	height: 180px;
	border-radius: 60px;
	background-color: #d5e1f1;
	z-index: 9;
	transition: all 1s;
	display: none;
}

.rightSlide .oneItem {
	width: 60px;
	height: 60px;
	cursor: pointer;
	position: relative;
}

.rightSlide .oneItem:nth-of-type(1):hover {
	border-radius: 0 60px 60px 0;
	background-color: rgba(4, 64, 126, 1);
}

.rightSlide .oneItem:nth-of-type(2):hover {
	background-color: rgba(4, 64, 126, 1);
}

.rightSlide .oneItem .telHover {
	display: none;
	position: absolute;
	top: 0px;
	left: -210px;
	width: 210px;
	height: 60px;
	line-height: 60px;
	border-radius: 60px 0 0 60px;
	background-color: rgba(4, 64, 126, 1);
	color: rgba(255, 255, 255, 1);
	font-size: 24px;
	font-weight: bolder;
	text-align: center;
	font-family: Roboto;
	transition: all 0.3s;
}

.rightSlide .oneItem .codeHover {
	display: none;
	position: absolute;
	top: 0px;
	left: -205px;
	width: 205px;
	height: 205px;
	padding: 15px;
	box-sizing: border-box;
	background-color: rgba(4, 64, 126, 1);
}

.rightSlide .oneItem .codeHover img {
	width: 100%;
}

.rightSlide .oneItem:hover .telHover,
.rightSlide .oneItem:hover .codeHover {
	display: block;
}

.rightSlide .oneItem:hover .img1 {
	background-image: url('../image/icon/stLine-mobile-l-2.png');
}

.rightSlide .oneItem:hover .img2 {
	background-image: url('../image/icon/semiDesign-semi-icons-qr_code-2.png');
}

.rightSlide .oneItem .img1 {
	width: 30px;
	height: 30px;
	background-image: url('../image/icon/stLine-mobile-l.png');
	background-size: 100% 100%;
	transition: all 0.3s;
}

.rightSlide .oneItem .img2 {
	width: 30px;
	height: 30px;
	background-image: url('../image/icon/semiDesign-semi-icons-qr_code.png');
	background-size: 100% 100%;
	transition: all 0.3s;
}

.rightSlide .oneItem .img {
	width: 30px;
	height: 30px;
}

.spaceBetween-center {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.double-center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.line1 {
	width: 100%;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.line3 {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	word-break: break-all;
	-webkit-box-orient: vertical;
}

.line6 {
	width: 100%;
	-o-text-overflow: -o-ellipsis-lastline;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	line-clamp: 4;
	-webkit-box-orient: vertical;
}

.phone_phone {
	display: none;
}

@media screen and (max-width:1400px) {
	.line6 {
		-webkit-line-clamp: 4;
		line-clamp: 4;
	}

	header .logoBox .nav .nav-item .oneItem text:nth-of-type(1) {
		font-size: 16px;
	}

	.footer-lgBox .messageBox .leftBox .oneItem,
	.footer-lgBox .messageBox .leftBox .code {
		height: 40px;
	}

	.footer-lgBox .messageBox .leftBox .submitBox {
		margin-left: 5px;
		width: auto;
		height: 40px;
		line-height: 40px;
		padding: 0 5px;
		background-color: rgba(228, 197, 162, 1);
		color: rgba(16, 16, 16, 1);
		font-size: 12px;
		text-align: center;
		font-family: Roboto;
	}
}

@media screen and (max-width:1200px) {
	.line6 {
		-webkit-line-clamp: 2;
		line-clamp: 2;
	}

	.aboutBox .about_info .about_info_text {
		padding: 0px 17px 0px 30px !important;
	}

	header .logoBox .nav .nav-item .oneItem text:nth-of-type(1) {
		font-size: 14px;
	}

	.footer-lgBox .messageBox .leftBox .oneItem,
	.footer-lgBox .messageBox .leftBox .code,
	.footer-lgBox .messageBox .leftBox .submitBox {
		height: 30px;
	}

	.footer-lgBox .messageBox .leftBox .submitBox {
		line-height: 30px;
	}

	.footer-lgBox .messageBox .leftBox .oneItem span {
		font-size: 12px;
	}

	.footer-lgBox .messageBox .leftBox .oneItem .icon {
		width: 15px;
		height: 15px;
	}

	.footer-lgBox .messageBox .leftBox .oneItem input {
		width: 40px !important;
	}
}

@media screen and (max-width:991px) {
	.aboutBox .about_info .about_info_text {
		padding: 0px 17px 0px 30px !important;
	}

	.rightSlide {
		display: none !important;
	}

	.copyTips {
		width: 230px;
		height: 50px;
		line-height: 50px;
		border-radius: 4px;
		font-size: 14px;
	}
}

@media screen and (max-width:768px) {
	.aboutBox .about_info .about_info_text {
		padding: 30px 17px 30px 30px !important;
	}

	.line6 {
		-webkit-line-clamp: 6;
		line-clamp: 6;
	}

	.bigBox {
		overflow-x: hidden;
	}

	header .topText-xs {
		height: 44px;
		line-height: 44px;
	}

	header .logoBox .logoImg {
		width: 46%;
	}


	.phone_phone {
		display: block;
	}
}