.nav {
	text-align: center
}

.menu,
.menu ul {
	list-style: none;
	padding: 0;
	margin: 0
}

.menu {
	height: 58px
}

.menu li li {
	background-color: rgba(0, 0, 0, .9)
}

.menu li a {
	padding: 0 20px;
	font-size: 1rem;
	color: #cecece;
	display: block;
	font-size: 18px;
	line-height: 58px
}

.menu>li {
	display: block;
	float: left;
	position: relative
}

.menu>li:first-child {
	border-radius: 5px 0 0
}

.menu li:hover {
	background-color: #1c1c1c;
	background: -moz-linear-gradient(#1c1c1c, #1b1b1b);
	background: -ms-linear-gradient(#1c1c1c, #1b1b1b);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #1c1c1c), color-stop(100%, #1b1b1b));
	background: -webkit-linear-gradient(#1c1c1c, #1b1b1b);
	background: -o-linear-gradient(#1c1c1c, #1b1b1b);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1c1c1c', endColorstr='#1b1b1b');
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#1c1c1c',endColorstr='#1b1b1b')";
	background: linear-gradient(#1c1c1c, #1b1b1b);
	border-bottom: 2px solid ##23E19C
}

.menu li:hover>a {
	color: #23e19c;
	border-bottom: 2px solid #23e19c
}

.submenu {
	left: 0;
	max-height: 0;
	position: absolute;
	top: 100%;
	z-index: 0;
	-webkit-perspective: 400px;
	-moz-perspective: 400px;
	-ms-perspective: 400px;
	-o-perspective: 400px;
	perspective: 400px;
	width: 100%
}

.submenu li {
	opacity: 0;
	-webkit-transform: rotateY(90deg);
	-moz-transform: rotateY(90deg);
	-ms-transform: rotateY(90deg);
	-o-transform: rotateY(90deg);
	transform: rotateY(90deg);
	-webkit-transition: opacity .4s, -webkit-transform .5s;
	-moz-transition: opacity .4s, -moz-transform .5s;
	-ms-transition: opacity .4s, -ms-transform .5s;
	-o-transition: opacity .4s, -o-transform .5s;
	transition: opacity .4s, transform .5s;
	box-sizing: border-box
}

.menu .submenu li:hover a {
	transition: 300ms;
	border-left: 2px solid #4f4f4f
}

.submenu li a {
	line-height: 3rem;
	padding: 0;
	transition: 500ms
}

.menu .submenu li:hover a {
	color: #fff
}

.menu>li:focus .submenu li,
.menu>li:hover .submenu li {
	opacity: 1;
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none
}

header {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 9999;
	display: flex;
	justify-content: center;
	background: rgba(0, 0, 0, .65)
}

header .nav {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	/*max-width: 1200px*/
}

header .nav a {
	font-size: 14px
}

header .nav .h-line {
	font-size: 1rem;
	color: rgba(94, 241, 171, .95);
	margin: 0 5px
}

header .nav .logo {
	margin-right: 3rem
}

header .nav .upload {
	margin-left: 3rem
}

header .nav .upload a {
	background: url(../img/icon/icon-upload.png) no-repeat left center;
	padding: 10px 30px
}

header .nav .user-info {
	display: flex;
	align-items: center
}

header .nav .user-info .submenu {
	width: 110px
}

header .nav .user-info .menu>li,
header .nav .user-info .menu>li>a {
	display: flex;
	align-items: center;
	height: 100%
}

header .nav .user-info .menu>li>a {
	padding: 0 5px
}

header .nav .user-info .menu>li>a img {
	width: 25px;
	height: 25px;
	border-radius: 15px
}

header .nav .user-info .login-user-name {
	max-width: 75px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

header .nav .download-app {
	margin-left: 3rem
}

header .nav .download-app>li>a {
	background: url(../img/icon/icon-download-app.png) no-repeat 10px center;
	padding-left: 30px
}

header .nav .download-app .submenu {
	width: 100%
}

header .nav .download-app .i-app a {
	background: #0c0000 url(../img/icon/icon-i-app.png) no-repeat 10px center;
	padding-left: 15px;
	position: relative
}

header .nav .download-app .a-app a {
	background: #0c0000 url(../img/icon/icon-a-app.png) no-repeat 10px center;
	padding-left: 15px;
	position: relative
}

header .nav .download-app .submenu .qr-code {
	position: absolute;
	top: 0;
	right: 100%;
	display: none
}

header .nav .download-app .submenu li {
	position: relative
}

header .nav .download-app .submenu li:hover .qr-code {
	display: block
}

.header-mini {
	width: 100vw;
	background: rgba(0, 0, 0, .6);
	padding: 15px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 10000;
	display: none
}

.header-mini .header-mini-menu-btn {
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: space-around;
	flex-direction: column;
	cursor: pointer
}

.header-mini .header-mini-menu-btn span {
	width: 100%;
	height: 3px;
	border-radius: 3px;
	background: #fff;
	transition: .5s
}

.header-mini .header-mini-menu-btn.active span:nth-of-type(1) {
	transform: rotate(43deg);
	transform-origin: 0
}

.header-mini .header-mini-menu-btn.active span:nth-of-type(2) {
	opacity: 0
}

.header-mini .header-mini-menu-btn.active span:nth-of-type(3) {
	transform: rotate(-43deg);
	transform-origin: 0
}

.header-mini-menu {
	width: 100%;
	height: 100%;
	background: #fff;
	padding: 15px 0;
	position: fixed;
	top: 0;
	padding-top: 70px;
	background: rgba(255, 255, 255, .95);
	right: 0;
	z-index: 9999;
	display: none;
	overflow-y: scroll
}

.header-mini-menu .mini-menu-list>li {
	border-top: 1px solid #ccc;
	padding: 5px 20px
}

.header-mini-menu .mini-menu-list>li>a {
	font-size: 18px;
	line-height: 30px;
	color: #666
}

.header-mini-menu .mini-menu-list .mini-submenu li {
	padding-left: 30px;
	background: #f3f3f3;
	margin-bottom: 1px
}

.header-mini-menu .mini-menu-list .mini-submenu a {
	font-size: 14px;
	line-height: 30px;
	color: #999
}

@media only screen and (min-width:960px)and (max-width:1200px) {
	header .nav .upload {
		display: none
	}

	header .nav .download-app {
		display: none
	}
}

@media screen and (max-width:960px) {
	.header-mini {
		display: flex
	}

	header {
		display: none
	}
	.footer{
		display: none !important;
	}
	.new-footer-wrap{
		display: block;
	}
}

@media screen and (min-width:960px) {
	.header-mini-menu {
		display: none !important
	}
	.new-footer-wrap{
		display: none !important
	}
}

.page-content .bread-nav {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 17px 0
}

.page-content .bread-nav a {
	height: 30px;
	line-height: 30px;
	padding: 0 8px;
	border: 1px solid #b5b5b5;
	background: #fff;
	border-radius: 5px;
	font-size: 14px;
	display: inline-block
}

.page-content .bread-nav .current {
	height: 30px;
	line-height: 30px;
	padding: 0 8px;
	border: 1px solid #23e19c;
	background: #fff;
	border-radius: 5px;
	color: #23e19c;
	font-size: 14px;
	display: inline-block
}

.p {
	padding-top: 3rem
}

.p .title {
	text-align: center;
	font-family: syst;
	padding: 3.3rem 0 2rem;
	position: relative;
	max-width: 1200px;
	margin: 0 auto
}

.p .title .h-line {
	width: 3px;
	height: 2rem;
	background: rgba(94, 241, 171, .95);
	margin: 0 1rem;
	display: inline-block
}

.p .title h2 {
	font-size: 3rem;
	display: flex;
	justify-content: center;
	align-items: center
}

.p .title .title-desc {
	font-size: 1.67rem;
	line-height: 2rem;
	padding: 2rem 0
}

.p .title a {
	position: absolute;
	right: 0;
	top: 45%
}

.footer {
	background: #f3f3f3;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-bottom: 0 !important;
	padding-top: 0
}

.footer .title {
	color: #191919;
	padding-top: 6.3rem;
	align-self: center
}

.footer .title-desc {
	text-align: left
}

.footer .footer-content {
	background: #181818
}

.footer .footer-content .fast-link {
	max-width: 1200px;
	width: 85%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	padding: 2rem 0
}

.footer .footer-content .fast-link ul {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap
}

.footer .footer-content .fast-link ul li {
	padding: .5rem 1rem;
	position: relative
}

.footer .footer-content .fast-link ul li a {
	display: flex;
	justify-content: flex-start;
	align-items: center
}

.footer .footer-content .fast-link ul li .qr-code {
	position: absolute;
	bottom: 30px;
	background: url(../img/icon/code-bg.png) no-repeat;
	padding: 6px;
	display: none;
	transition: .5s
}

.footer .footer-content .fast-link .contact .qr-code {
	left: -30px
}

.footer .footer-content .fast-link ul li .icon-click {
	display: none
}

.footer .footer-content .fast-link ul li:hover .qr-code {
	display: block;
	transition: .5s
}

.footer .footer-content .fast-link ul li:hover .icon-show {
	display: none
}

.footer .footer-content .fast-link ul li:hover .icon-click {
	display: block
}

.footer .footer-content .company-info {
	display: flex;
	justify-content: center;
	padding: 2rem 0;
	color: #7d7d7d;
	border-top: 1px solid #494949;
	flex-wrap: wrap
}

.footer .footer-content .company-info span {
	padding: 5px 10px
}

.fixed-menu {
	position: fixed;
	right: 0;
	bottom: 5rem;
	z-index: 100;
	display: none
}

.fixed-menu .contact {
	opacity: 0
}

.warning {
	width: 100vw;
	height: 100vh;
	background: #000;
	position: fixed;
	top: 0;
	left: 0;
	color: #fff;
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 10000;
	font-size: 3rem
}

/* new phone header style */

.two_bar {
	display: none;
}

li {
	list-style: none;
}

.two_bar li,
.one_bar {
	display: flex;
	text-align: center;
	justify-content: space-between;
	align-items: center;
	font-size: 15px;
	font-family: PingFang-SC-Medium, PingFang-SC;
	font-weight: 500;
	color: #222222;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	overflow: hidden;
	width: 100vw;
	box-sizing: border-box;
}

.one_bar {
	padding: 17px 14px 16px 15px;
}

.one_bar img {
	width: 20px;
}

.two_bar>li {
	padding-left: 45px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.two_bar>li a {
	font-size: 14px;
	font-family: PingFang-SC-Medium, PingFang-SC;
	font-weight: 500;
	color: #222222;
	width: 100%;
	height: 100%;
	padding: 17px 14px 16px 15px;
	text-align: left;
}
/* new phone footer style*/
.new-footer-wrap{
				background-color: #181818;
				padding: 25px 15px 160px;
				box-sizing: border-box;
				width: 100vw;
				font-family: PingFang-SC-Medium, PingFang-SC;
				font-weight: 500;
				color: #FFFFFF;
			}
			.new-footer-wrap .footer-title{
				font-size: 14px;
			}
			.new-footer-wrap .link-us{
				margin-top: 12px;
				margin-bottom: 12px;
			}
				
			.new-footer-wrap .link-us a{
				color: #FFFFFF;
				text-decoration: none;
			}
			.new-footer-wrap .link-us a,.new-footer-wrap .address-show{
				font-size: 12px;
			}
			.new-footer-wrap .link-us a img,.new-footer-wrap .address-show img{
				width: 15px;
				margin-right: 6px;
			}
			.new-footer-wrap .address-show{
				padding-bottom: 12px;
				border-bottom: 1px solid rgba(255, 255, 255, 0.5);
				margin-bottom: 11px;
			}
			.new-footer-wrap .new-company-info{
				font-size: 11px;
				font-family: PingFang-SC-Medium, PingFang-SC;
				font-weight: 500;
				color: rgba(255, 255, 255, 0.7);
				padding-bottom: 30px;
			}
			.new-footer-wrap .new-company-info div a{
				font-size: 11px;
				font-family: PingFang-SC-Medium, PingFang-SC;
				font-weight: 500;
				color: rgba(255, 255, 255, 0.7);
				text-decoration: none;
			}
			.new-footer-wrap .new-company-info div a img{
				width: 15px;				margin-right: 6px;
			}
			.new-footer-wrap .new-company-info div {
				margin-bottom: 6px;
			}
			.new-footer-wrap .new-company-info .mzsm{
				margin-top: 25px;
				line-height: 1.7;
			}
			.not-login a:hover{
              display:inline-block;
			}