@font-face {
	font-family: "PingFang";
	src: url('../fonts/PINGFANG.ttf') format('truetype');
}

@font-face {
	font-family: "PingFang-Medium";
	src: url('../fonts/PINGFANG-Medium.TTF') format('truetype');
}

@font-face {
	font-family: "PingFang-Bold";
	src: url('../fonts/PINGFANG-Bold.TTF') format('truetype');
}

@font-face {
	font-family: "PingFangSC-Semibold";
	src: url('../fonts/PingFangSC-Semibold.ttf') format('truetype');
}
@font-face {
	font-family: "PingFangSC-Heavy";
	src: url('../fonts/PINGFANG-Heavy.TTF') format('truetype');
}

@font-face {
	font-family: "SourceHanSansCN-Bold";
	src: url('../fonts/SourceHanSansCN-Bold.OTF'),url('../fonts/SourceHanSansCN-Bold.ttf') format('truetype');
}

@font-face {
	font-family: "SourceHanSansCN-REGULAR";
	src: url('../fonts/SourceHanSansCN-Regular.OTF'),url('../fonts/SourceHanSansCN-REGULAR_0.ttf') format('truetype');
}

* {
	margin: 0;
	padding: 0;
	color: #333;
	font-family: auto;
	box-sizing: border-box;
}

img {
	max-width: 100%;
	transition: .4s;
}

a {
	text-decoration: none;
	color: #333;
	cursor: pointer;
}

a:hover {
	color: #007AFF;
}

body {
	width: 100%;
	min-width: 1200px;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.m1200 {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

ul,
li {
	padding: 0;
	list-style: none;
}

header {
	height: 160px;
	width: 100%;
	background-color: #fff;
	padding: 20px 0;
	box-sizing: border-box;
	border-bottom: 2px solid #0077DF;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	header {
		padding: 22px 0;
	}
}

.top {
	height: 30px;
	width: 100%;
	line-height: 30px;
	background-color: #f3f3f3;
}

.top p {
	font-size: 13px;
}

.top span {
	display: inline-block;
	padding: 0 12px;
}
.top .fr{
	text-align: right;
}
.top span a {
	font-size: 13px;
}
.top span a i.num{
	display: inline-block;
    width: 16px;
    height: 15px;
    background: #f66;
    border-radius: 50%;
    text-align: center;
    line-height: 15px;
	font-size: 12px;
	font-style: normal;
	color: #fff;
	border: none;
    float: right;
}
header .fl {
	overflow: hidden;
	width: 556px;
}

header .fl .logo {
	width: 248px;
	height: 68px;
	padding-right: 15px;
	float: left;
}

header .fl .call {
	width: 276px;
	height: 48px;
	float: left;
	border-left: #ccc 1px solid;
	padding-left: 15px;
	margin-top: 8px;
}

header img {
	max-width: 100%;
	max-height: 103%;
}

header .soso {
	width: 539px;
	/*height: 40px;*/
	border: 4px solid #4271f0;
	display: flex;
	justify-content: space-between;
	position: relative;
}

header .soso .sub {
	background-color: #4271f0;
	width: 82px;
	height: 34px;
	line-height: 34px;
	font-size: 18px;
	color: #fff;
	text-align: center;
	position: absolute;
	right: -1px;
	top: -1px;
	border:none;
}

header .soso input {
	border: none;
	outline: none;
	height: 32px;
	padding: 0 10px;
	box-sizing: border-box;
	background-color: #fff;
	width: 440px;
	margin-left: 1px;
}

header .fr p {
	color: #ccc;
}

header .fr p span {
	display: inline-block;
	padding: 9.4px;
	font-size: 13px;
	color: #666;
}

header .fr p span a {
	font-size: 12px;
	color: #666;
	font-family: "PingFangSC-Medium";
}

nav {
	width: 1200px;
	margin: 12px auto;
	position: relative;
}

nav ul {
	display: flex;
	justify-content: space-between;
}

nav>ul>li {
	padding: 0 22px;
	height: 48px;
	position: relative;
	line-height: 48px;
	background-size: 0;
	transition: 0.4s;
}

nav ul li a {
	font-size: 18px;
}

nav ul li:first-child {
	width: 210px;
	box-sizing: border-box;
	text-align: center;
}

nav>ul>li:hover,
nav>ul>li.active {
	background: linear-gradient(to right, #7046fe, #0a6ffb);
	background-size: 100%;
}

nav>ul>li:hover a,
nav>ul>li.active a {
	color: #fff;
}

nav>ul>li li:hover p a {
	color: #333;
}

nav>ul>li dl {
	position: absolute;
	top: 48px;
	left: 0;
	width: 100%;
	display: none;
	opacity: 0;
	transition: 0.6s;
	z-index: 3;
}

nav ul li dl dd {
	height: 35px;
	background: linear-gradient(to right, #7046fe, #0a6ffb);
	background: linear-gradient(to right, #9c80fb, #73aaf4);
	text-align: center;
	border-radius: 5px;
	margin-top: 2px;
}

nav ul li dl dd>a {
	color: #fff;
	line-height: 35px;
	display: block;
	font-size: 16px;
}

nav>ul>li dl dd:hover {
	background: #fff;
}

nav>ul>li dl dd:hover a {
	color: #333;
}

nav>ul>li:hover dl {
	display: block;
	opacity: 1;
}

nav ul .hot {
	position: absolute;
	top: -15px;
	right: 10px;
	animation: updown 1s infinite;
	-webkit-animation: updown 1s infinite;
	-moz-animation: updown 1s infinite;
}

nav ul .hot img {
	width: 26px;
}

nav .menu {
	position: absolute;
	z-index: 3;
	height: 560px;
	top: 48px;
	width: 210px;
	display: none;
	left: 0;
}

nav .menu ul {
	display: flex;
	flex-direction: column;
}

nav .menu ul li.cur,
nav .menu ul li:hover {
	background-color: #fff;
}

nav .menu ul li.cur p,
nav .menu ul li:hover p {
	color: #333;
}

nav .menu ul li.cur p span,
nav .menu ul li:hover p span {
	color: #999;
}

nav .menu li {
	min-height: 93px;
	height:auto;
	padding: 0 20px;
	background: rgba(22, 20, 45, 0.8);
}

nav .menu li p {
	color: #fff;
	font-size: 18px;
	text-align: left;
	margin-top: 18px;
	line-height: 18px;
}

nav .menu li p:nth-child(2) {
	margin-top: 8px;
}

nav .menu li p span {
	font-size: 14px;
	color: #eee;
}

nav .category2 {
	background-color: #fff;
	width: 768px;
	height: 560px;
	position: absolute;
	top: 0;
	left: 210px;
	display: none;
	border-top: 1px solid #8cc4f1;
}

nav .category2 ul li {
	width: 100%;
	min-height: 92px;
	height: auto;
	background-color: #fff;
	box-sizing: border-box;
	padding-left: 0;
	margin-bottom: 3px;
}

nav .category2 li p {
	margin-top: 0;
	line-height: 26px;
	min-height: 92px;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding: 6px 0;
}

nav .category2 li p a {
	color: #333;
}

nav .category2 li p a.active,
nav .category2 li p a:hover {
	color: #4271f0;
}

nav .category2 li .mt {
	width: 140px;
	line-height: 92px;
	text-align: center;
	font-size: 20px;
	color: #777;
	border-bottom: 3px solid #fff;
}

nav .category2 li .mm {
	line-height: 92px;
	border-bottom: #d8d8d8 1px solid;
}

nav .category2 li .mm a {
	font-size: 14px;
	padding: 0 8px 0 0;
	display: inline-block;
}

nav .menu>li {
	border-bottom: #d8d8d8 1px solid;
}

nav .menu>ul li:hover .category2,
nav .menu>ul li.cur .category2 {
	display: block;
}

.important {
	color: #FF0000 !important;
}

footer {
	width: 100%;
	background-color: #1f1f23;
}

footer .footlinks {
	width: 100%;
	height: 300px;
	border-bottom: #444 1px solid;
	padding: 50px 0;
	box-sizing: border-box;
}

footer .footlinks .fl {
	width: 812px;
}

footer .footlinks .fl ul {
	overflow: hidden;
	width: 100%;
}

footer .footlinks .fl li {
	float: left;
	width: 25%;
}

footer .footlinks .fl a {
	color: #bbb;
	font-size: 15px;
	line-height: 32px;
}

footer .footlinks .fl a:hover {
	color: #0077DF;
}

footer .footlinks .fl dt {
	margin-bottom: 10px;
}

footer .footlinks .fl dt a {
	font-size: 18px;
	color: #ddd;
}

footer .fr {
	width: 388px;
}

footer .contacks {
	padding-left: 75px;
	border-left: #444 1px solid;
	background: transparent;
}

footer .contacks p {
	color: #bbb;
	font-size: 18px;
}

footer .contacks h5 {
	font-size: 26px;
	line-height: 34px;
	color: #fff;
}

footer .contacks p.ss {
	line-height: 32px;
	font-size: 15px;
}

footer .contacks p span {
	color: #eee;
}

footer .erwm {
	overflow: hidden;
	margin-top: 6px;
}

footer .erwm li {
	float: left;
	margin-right: 18px;
}

footer .erwm p {
	font-size: 12px;
	text-align: center;
	padding-top: 6px;
	color: #ddd;
}

footer .friendlinks {
	text-align: center;
	color: #bbb;
	margin-top: 46px;
}

footer .friendlinks a {
	color: #bbb;
	font-size: 14px;
}

footer .friends ul {
	display: flex;
	width: 500px;
	margin: 32px auto;
}

footer .friends ul li {
	margin: 0 7px;
}

footer .copyright {
	text-align: center;
	color: #bbb;
	line-height: 24px;
	font-size: 12px;
	padding-bottom: 28px;
}

@keyframes updown {
	0% {
		margin-top: 0;
	}
	50% {
		margin-top: -10px;
	}
	100% {
		margin-top: 0;
	}
}

.justcenter {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.banner {
	width: 100%;
}

.banner img {
	width: 100%;
	height: 100%;
}

.title {
	text-align: center;
	padding: 70px 0 58px 0;
}


.title h2 {
	font-size: 52px;
	font-weight: 400;
	line-height: 69px;
	font-family: "微软雅黑";
}

a.btn {
	display: block;
	transition: 0.4s;
}

a.btn:hover {
	box-shadow: 1px 1px 3px 1px #ddd;
	transform: translateY(-3px);
	cursor: pointer;
}

input {
	outline: none;
}


/*login*/

.popup {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	position: fixed;
	top: 0px;
	z-index: 3000;
	display: none;
}

.login-popup {
	width: 400px;
	height: 400px;
	margin: 100px auto;
	background-color: white;
	border-radius: 10px;
	z-index: 3000;
	overflow: hidden;
	position: relative;
}

.inf-item {
	width: 100%;
	/*height: 38px;*/
	line-height: 38px;
	font-size: 14px;
	margin-top: 20px;
}

.popup .title {
	background: #f2f2f2;
	padding: 0 30px;
	color: #4c4c4c;
	font-size: 24px;
	border-bottom: 1px solid #e5e5e5;
}

.popup .title h2 {
	font-size: 18px;
	height: 45px;
	line-height: 45px;
	color: #4c4c4c;
	font-weight: normal;
}

.popup a.guanbi {
	background: url(../images/popup_guanbi.png) repeat 0px 0px;
	background: url(../images/popup_guanbi.png) repeat 0px -35px;
	width: 35px;
	height: 35px;
	display: block;
	position: absolute;
	top: 8px;
	right: 20px;
	cursor: pointer;
}

.login-popup .popup-con {
	padding: 20px 60px;
	font-size: 18px;
}

.popup-con .login-href {
	text-align: right;
}

.popup-con .login-href {
	text-align: right;
}

.popup-con .login-href a {
	color: #275ec7;
	font-size: 14px;
	line-height: 25px;
}

.login-popup .inf-item {
	margin-top: 30px;
}

.login-popup .input-name {
	background: url(../images/iconLogin.png) 10px 10px no-repeat;
}

.login-popup .input-pass {
	background: url(../images/iconLogin.png) 10px -46px no-repeat;
}

.login-popup .inf-item input {
	height: 38px;
	line-height: 38px;
	width: 100%;
	padding-left: 5px;
	border: 1px solid #ccc;
	font-size: 14px;
	text-indent: 10px;
	margin-right: 0;
	float: left;
	text-align: left;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	border-radius: 4px;
	box-sizing: border-box;
	text-indent: 35px;
	transition: all ease 0.4s;
}

.forgot-pass {
	text-decoration: underline;
	color: #275ec7;
	font-size: 14px;
	text-align: right;
	width: 100%;
	line-height: 40px;
}

.login-popup .login-b {
	background: #275ec7;
	display: block;
	width: 60%;
	margin: 20px auto 0;
	line-height: 40px;
	height: 40px;
	text-align: center;
	vertical-align: middle;
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	font-family: " 微软雅黑";
	box-shadow: 0 0 20px;
}


/*login e*/


/*register*/


/*注册*/

.register-popup {
	width: 750px;
	height: 500px;
	margin: 100px auto;
	background-color: white;
	border-radius: 10px;
	z-index: 3000;
	overflow: hidden;
	position: relative;
}

.register-popup .popup-con {
	padding: 40px 70px;
	font-size: 18px;
}

.popup-con .login-href {
	text-align: right;
}

.popup-con .login-href a {
	color: #275ec7;
	font-size: 14px;
	line-height: 25px;
}

.register-popup .inf-item {
	/*overflow: hidden;*/
}

.register-popup .inf-item span {
	width: 90px;
	text-align: right;
	margin-right: 20px;
	margin-left: 25px;
	float: left;
	display: inline-block;
}

.register-popup .inf-item .validate-code {
	background: url(../../images/img/code-bg.jpg) no-repeat;
	display: inline-block;
	width: 90px;
	height: 38px;
	line-height: 38px;
	cursor: pointer;
	text-align: center;
	vertical-align: middle;
	letter-spacing: 3px;
	font-weight: bolder;
	margin-left: 10px;
	float: left;
}

.register-popup .register-b {
	background: #275ec7;
	display: inline-block;
	margin-right: 20px;
	padding: 0 50px;
	line-height: 40px;
	height: 40px;
	text-align: center;
	vertical-align: middle;
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	margin-top: 20px;
	font-family: " 微软雅黑";
	margin-left: 135px;
	/*box-shadow: 0 0 20px 1px #fff inset;*/
}


/*------------------------------登录注册框------------------------------*/

.popup {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	position: fixed;
	top: 0px;
	z-index: 3000;
	display: none;
}

.popup a.guanbi {
	/*background:url(../images/popup_guanbi.png) repeat 0px 0px;*/
	background: url(../images/popup_guanbi.png) repeat 0px -35px;
	width: 35px;
	height: 35px;
	display: block;
	position: absolute;
	top: 8px;
	right: 20px;
	cursor: pointer;
}

.popup .title {
	background: #f2f2f2;
	padding: 0 30px;
	color: #4c4c4c;
	font-size: 24px;
	border-bottom: 1px solid #e5e5e5;
}

.popup .title h2 {
	font-size: 18px;
	height: 45px;
	line-height: 45px;
	color: #4c4c4c;
	font-weight: normal;
}

.popup .title h2:before {
	display: none;
}

.popup .title h2:after {
	display: none;
}

.inf-item {
	width: 100%;
	height: 38px;
	line-height: 38px;
	font-size: 14px;
	margin-top: 20px;
}


/*登录*/

.login-popup {
	width: 800px;
	height: 400px;
	margin: 100px auto;
	background-color: white;
	border-radius: 10px;
	z-index: 3000;
	overflow: hidden;
	position: relative;
}


/*注册*/

.register-popup {
	width: 750px;
	height: 570px;
	margin: 100px auto;
	background-color: white;
	border-radius: 10px;
	z-index: 3000;
	overflow: hidden;
	position: relative;
}

.register-popup .popup-con {
	padding: 40px 70px;
	font-size: 18px;
}

.popup-con .login-href {
	text-align: right;
}

.popup-con .login-href a {
	color: #275ec7;
	font-size: 14px;
	line-height: 25px;
}

.register-popup .inf-item span {
	width: 90px;
	text-align: right;
	margin-right: 20px;
	margin-left: 25px;
	float: left;
	display: inline-block;
}

.register-popup .inf-item input {
	height: 37px;
	line-height: 38px;
	width: 270px;
	padding-left: 5px;
	border: 1px solid #ccc;
	font-size: 14px;
	text-indent: 10px;
	margin-right: 0;
	float: left;
	text-align: left;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	border-radius: 4px;
	box-sizing: border-box;
	transition: all ease 0.4s;
}

.register-popup .inf-item input:focus {
	box-shadow: 0 0 12px rgba(169, 209, 255, 0.8);
}

.register-popup .input-tishi {
	margin-left: 10px;
	color: rgb(153, 153, 153);
	float: left;
}

.register-popup .input-tishi i {
	font-style: normal;
}

.register-popup .input-tishi .input-warning {
	display: none;
	color: #c90000;
	/*line-height: 25px;
    border: 1px solid #c90000;
    border-radius: 6px;
    padding: 2px 10px 2px 20px;
    font-size: 12px;
    position: relative;*/
}

.register-popup .inf-item .validate-code {
	background: #eee;
	display: inline-block;
	width: 90px;
	height: 38px;
	line-height: 38px;
	cursor: pointer;
	text-align: center;
	vertical-align: middle;
	letter-spacing: 3px;
	font-weight: bolder;
	margin-left: 10px;
	background-size:contain;
	float: left;
}

.register-popup .inf-item .phone-code {
	font-family: " 微软雅黑";
	background: #f7f7f7;
	display: inline-block;
	width: 100px;
	line-height: 30px;
	margin-left: 10px;
	text-align: center;
	font-size: 14px;
	border-radius: 3px;
	background-color: #275ec7;
	color: #fff;
	height: 38px;
	line-height: 38px;
	float: left;
}

.register-popup .register-b {
	background: #275ec7;
	display: inline-block;
	margin-right: 20px;
	padding: 0 50px;
	line-height: 40px;
	height: 40px;
	text-align: center;
	vertical-align: middle;
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	margin-top: 20px;
	font-family: " 微软雅黑";
	margin-left: 135px;
	/*box-shadow: 0 0 20px 1px #fff inset;*/
}


/*登录*/

.login-popup {
	width: 400px;
	height: 400px;
	margin: 100px auto;
	background-color: white;
	border-radius: 10px;
	z-index: 3000;
	overflow: hidden;
	position: relative;
}

.login-popup .popup-con {
	padding: 20px 60px;
	font-size: 18px;
}

.login-popup .inf-item {
	margin-top: 30px;
}

.login-popup .inf-item input {
	height: 38px;
	line-height: 38px;
	width: 100%;
	padding-left: 5px;
	border: 1px solid #ccc;
	font-size: 14px;
	text-indent: 10px;
	margin-right: 0;
	float: left;
	text-align: left;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	border-radius: 4px;
	box-sizing: border-box;
	text-indent: 35px;
	transition: all ease 0.4s;
}

.login-popup .inf-item input:focus {
	box-shadow: 0 0 12px rgba(169, 209, 255, 0.8);
}

.login-popup .input-name {
	background: url(../images/iconlogin.png) 10px 10px no-repeat;
}

.login-popup .input-pass {
	background: url(../images/iconlogin.png) 10px -46px no-repeat;
	;
}

.forgot-pass {
	text-decoration: underline;
	color: #275ec7;
	font-size: 14px;
	text-align: right;
	width: 100%;
	line-height: 40px;
}

.login-popup .login-b {
	background: #275ec7;
	display: block;
	width: 60%;
	margin: 20px auto 0;
	line-height: 40px;
	height: 40px;
	text-align: center;
	vertical-align: middle;
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	font-family: " 微软雅黑";
	/*box-shadow: 0 0 20px 1px #fff inset;*/
}

#labzt {
	float: left;
	font-weight: bold;
	line-height: 30px;
	font-size: 16px;
	/* min-width: 50px; */
}

#dxloginId .register-popup {
	width: 400px;
	height: 430px;
}

#dxloginId .popup-con {
	padding: 0px 20px;
}

#dxloginForm div:nth-child(1),
#dxloginForm div:nth-child(2) {
	border-bottom: 1px solid #cdcdcd;
}

#dxloginForm input {
	border: none;
	box-shadow: none;
}

#dxPhoneCode {
	background: none;
	float: right;
	color: #000;
	line-height: 38px;
}

.inf-black {
	width: 100%;
	height: 38px;
	line-height: 38px;
	font-size: 14px;
	margin-top: 20px;
}

.inf-black a {
	border: 1px solid #cdcdcd;
	padding: 5px 2px;
}

.inf-black a:hover {
	border-color: #275ec7;
}

#dxloginForm div:nth-child(4) a {
	width: 100%;
	margin: 0;
	padding: 0;
}

.nav .nav-left-sec-l dd .improtProduct {
	color: red;
}


/*二级导航*/

.crumb {
	padding-top: 20px;
	color: #d8d8d8;
}

.crumb p {
	line-height: 30px;
}

.crumb a {
	color: #333;
}

.crumb p a.curr {
	color: #146BFB;
}


/*获取资料表单选择*/

.getres {
	width: 100%;
	background: url(../images/01.jpg) no-repeat center;
	-webkit-background-size: cover;
	background-size: cover;
}

.getres .content {
	width: 990px;
	margin: 0 auto;
}

.getres .content .box {
	width: 950px;
	margin: 0 auto;
	/*height: 600px;*/
	background-color: #fff;
	padding: 46px 20px 46px 70px;
	box-sizing: border-box;
}

.getres .box li {
	position: relative;
	margin-bottom: 40px;
}

.getres .box li .sec {
	position: absolute;
	left: -35px;
	top: 0;
	font-size: 32px;
}

.getres .box p {
	color: #333;
	font-size: 32px;
	line-height: 40px;
	margin-bottom: 14px;
}

.getres .box label {
	padding: 0 12px;
	font-size: 24px;
	margin-right: 2px;
}

.getres .box label:before {
	content: '';
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: #f00 2px solid;
	background-color: #fff;
	display: inline-block;
	position: absolute;
	margin-top: 14px;
	margin-left: -9px;
}

.getres .box label.selected:before {
	content: "";
	width: 15px;
	height: 15px;
	display: inline-block;
	background: #f00;
	-webkit-background-size: cover;
	background-size: cover;
	border: #ff9a9a 4px solid;
}

.getres .box label input {
	margin-right: 4px;
}

.getres .bm {
	background: url(../images/bm.png) no-repeat center;
	-webkit-background-size: cover;
	background-size: cover;
	width: 992px;
	height: 120px;
	margin: 0 auto;
	z-index: 2;
	position: relative;
	margin-top: -8px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.getres .bm .input {
	width: 605px;
	height: 60px;
	border-radius: 30px;
	background-color: #fff;
	/*display: flex;*/
	float: right;
	margin-left: 28px;
	padding: 0 0 0 70px;
	box-sizing: content-box;
}

.getres .bm .pho {
	/*height: 46px;*/
	vertical-align: middle;
	padding-top: 15px;
	float: left;
}

.getres .bm input {
	width: 365px;
	height: 60px;
	border: none;
	outline: none;
	font-size: 26px;
	padding-left: 16px;
	float: left;
}

.getres .bm input:placeholder {
	font-size: 26px;
}

.getres .bm input:-ms-input-placeholder {
	font-size: 26px;
}

.getres .bm input::-webkit-input-placeholder {
	font-size: 26px;
}

.getres .bm input:-moz-placeholder {
	font-size: 26px;
}

.getres .bm .sbt {
	width: 205px;
	border-radius: 30px;
	height: 100%;
	background-color: #FF4277;
	text-align: center;
	line-height: 60px;
	color: #fff;
	font-size: 22px;
	float: right;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
	box-shadow: 0 0 0 60px #fff inset;  /*focus背景色*/
	-webkit-text-fill-color: #878787;   /*字的颜色*/
	/* border:none; */
}

select:focus { outline: none; 
appearance:none;
-moz-appearance:none; /* Firefox */
-webkit-appearance:none; /* Safari 和 Chrome */
}


a.btn{
	display: inline-block;
}




section{
	padding-bottom:70px;
}

.top-button {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    overflow: hidden;
    position: fixed;
    /* bottom: 100px; */
    bottom: 280px;
    right: 50px;
    cursor: pointer;
    z-index: 2018;
    display: none;
}
.top-button img {
    width: 68px;
    height: 68px;
    background-color: rgba(0,0,0,.6);
}

.menGray{
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.6);
	z-index: 9999;
	display: none;
}
.menGray.show{
	display: block;
}

.serviceAgreement{
	position: fixed;
	top:10%;
	left:15%;
	right:15%;
	bottom:10%;
	background: #fff;
	z-index:10000;
	padding:5px;
	box-sizing: border-box;
	overflow-y:hidden;
	display: none;
}
.serviceAgreement p{
	font-size:16px;
	line-height:34px;
	text-indent: 2em;
}
.serviceAgreement.show{
	display: block;
}
.serviceAgreement .close{
	position: fixed;
    right: 12%;
    top: 8%;
}
.serviceAgreement .close:before{
	content:'';
	display: block;
	width:34px;
	height:2px;
	background-color: #f3f3f3;
	transform: rotate(45deg);
}
.serviceAgreement .close:after{
	content:'';
	display: block;
	width:34px;
	height:2px;
	background-color: #f3f3f3;
	transform: rotate(-45deg);
	margin-top:-2px;
}
.serviceAgreement h3{
	margin-top:15px;
	line-height:40px;
}

.serviceAgreement .textinner{
	/* position: relative; */
	margin:20px;
	padding-bottom: 80px;
}
.serviceAgreement input[type='button']{
	width:120px;
	height:40px;
	background-color: #f00;
	color:#fff;
	font-size:16px;
	line-height:40px;
	text-align: center;
	position: absolute;
	bottom:40px;
	left:50%;
	transform: translateX(-50%);
	border:none;
	outline:none;
}


 #agreement{
	font-size:14px;
	color:#275ec7;
	line-height:24px;
	padding:0 8px;
}

.serviceAgreement .shell{
	height:100%;
	border:25px solid #fff;
	overflow-y:scroll;
}