@media only screen and (min-width:768px) {
	.container {
		width: 1000px;
		margin: 0 auto;
	}
}
.fontBold{
	font-weight: bold;
}
/*弹框 start*/
.dialogBox{
	width: 268px;
	height: 146px;
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
	padding: 15px;
	position: relative;
	left: 50%;
	top: 50%;
	margin: -72px 0 0 -134px;
	text-align: center;
}
.btnGroup_dialog{
	margin-top: 20px;
}
.btnGroup_dialog button{
	width: 158px;
	height: 40px;
	line-height: 40px;
	border-radius: 4px;
	font-weight: normal;
}
.btn_gryBorder{
	border: 1px solid #e6e6e6;
	background: #fff;
	margin-right: 14px;
}
.btn_blueBg{
	background: #30AAFE;
	color: #fff;
}
.btn_blueBorder{
	border: 1px solid #30AAFE;
	color: #30AAFE;
	width: 100%!important;
	background: #fff;
}
/*弹框 end*/
.prompt{
  color: #fff;
  height: 33px;
  line-height: 33px;
  text-align: center;
  position: fixed;
  top: 20%;
  left: 50%;
  width: 340px;
  font-size: 13px;
  border-radius: 20px;
  z-index: 99999;
  margin-left: -170px;
}
.gradientHide{
  opacity: 0;
  background: rgba(128,138,135 ,0.1);
  transition: all .2s;
}
.gradientShow{
  opacity: 1;
  background: rgba(41,36,33, 0.6);
  transition: all .2s;
}