@charset "utf-8";
* {
	margin: 0;
	padding: 0;
}

html,body{
	background: #000;
	font-family: "melbourneregular",Arial,"Hiragino Sans GB", "Microsoft YaHei", sans-serif;
	font-size: 14px;
	color: #3E3E3E;
}
textarea,
input {
	word-wrap: break-word;
	word-break: break-all;
	font-size: 14px;
}
a {
	text-decoration: none;
/*	color: #3E3E3E;*/
}
a:hover {
	color: #3E3E3E;
}
img{
/*	display: block;*/
	border: none;
	width: 100%;
}
ul,li {
	list-style: none;
}
input[type="button"],input[type="submit"],input[type="reset"],button {
	-webkit-appearance: none;
	font-size: 12px;
}

::selection {
	background: #0f0f22;
	color: #fff;
}
textarea {
	-webkit-appearance: none;
}
.animate {
	transition: all 0.5s cubic-bezier(0.25, 0, 0, 1);
	-webkit-transition: all 0.5s cubic-bezier(0.25, 0, 0, 1);
}
.loading{
	width: 100%;
	height: 10px;
	position: fixed;
	left: 0px;
	top: calc(50% - 5px);
}
.loading:before{
	width: 100%;
	height: 1px;
	background: #3E3E3E;
	opacity: .5;
	position: absolute;
	left: 0px;
	top: 50%;
	content: '';
}
.loading span{
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0px;
	top: 4px;
	display: block;
	background: #e5bf8e;
}
.loading b{
	display: block;
	width: 100px;
	height: 30px;
	line-height: 30px;
	position: absolute;
	left: 50%;
	margin-left: -50px;
	top: -30px;
	text-align: center;
	font-size: 24px;
	
}
.loading.active{
	opacity: 0;
	visibility: hidden;
}

.lightBox{
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0px;
	top: 100%;
	background: rgba(0, 0, 0, .8);
	z-index: 1000;
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}


.tipsMsg{
	width: 60%;
	height: auto;
	position: fixed;
	left: 20%;
	background: rgba(225, 0, 0, .8);
	line-height: 30px;
	color: #FFFFFF;
	font-size: 1.2rem;
	text-align: center;
	bottom: -45px;
	border-radius: 30px;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
}
.tipsMsg.active{
	bottom: 10px;
}

.toast{
	width: 120px;
	height: 120px;
	position: fixed;
	left: 50%;
	top: 50%;
	background: rgba(0,0,0,.7);
	margin-left: -60px;
	margin-top: -60px;
	z-index: 500;
	border-radius: 5px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.3s;
}
.toast.active{
	opacity: 1;
	visibility: visible;
}
.toast:after{
	width: 50px;
	height: 50px;
	position: absolute;
	left: 50%;
	margin-left: -25px;
	top: 20px;
	background: url(../../images/common/tips_icon.png) no-repeat;
	background-size: auto 50px;
	content: '';
}
.toast.warn:after{
	background-position: -50px 0px;
}
.toast span{
	display: block;
	width: 100%;
	text-align: center;
	position: absolute;
	color: #FFFFFF;
	font-size: 14px;
	top: 80px;
}
.backTop {
	position: fixed;
	z-index: 99;
	right: 50px;
	bottom: -100px;
	width: 50px;
	height: 50px;
	background: #FFF url(indeximg/gotop.png) 0 0 no-repeat;
	box-shadow: 0 0 20px rgba(0, 0, 0, .2);
	cursor: pointer;
	border-radius:10px
}

.backTop:hover {
	background: #c80406 url(indeximg/gotop2.png) 0 0 no-repeat;border-radius:10px
}

.backTop.active {
	bottom: 50px
}