*{
  box-sizing: border-box;
}
img{
  display: block;
}
a{
    text-decoration: none;
}
.hide{
	display: none;
}
.width-1200{
  width: 1200px;
  margin: 0 auto;
}
.cursor{
  cursor: pointer;
}
.flex-com{
  display: flex;
}
.flex-a-c{
  display: flex;
  align-items: center;
}
.flex-j-b{
  display: flex;
  justify-content: space-between;
}
.border-r{
  border: 1px solid red;
}
.border-b{
  border: 1px solid blue;
}
.border-g{
  border: 1px solid green;
}
.margin-r-10{
  margin-right: 10px;
}
.space{
  width: 1200px;
  height: 2px;
  background: #eee;
  margin: 40px auto;
}
.now-box{
  width: 100%;
  background: #eeeeee;
  height: 50px;
  font-size: 14px;
  color: #333;
}
.now-box a{
  color: #333;
}

.cursor { cursor: pointer; user-select: none; }
.edit:hover { color: #409eff }
.delete:hover { color: #f56c6c }
.state:hover { color: #409eff }
.level:hover { color: #409eff }
.reward:hover { color: #409eff }

/* ::-webkit-scrollbar{
  width:0;
  height:0;
}
::-webkit-scrollbar-track{
  background: rgb(239, 239, 239);
  border-radius:2px;
}
::-webkit-scrollbar-thumb{
  background: #bfbfbf;
  border-radius:0;
}
::-webkit-scrollbar-thumb:hover{
  background: #999;
}
::-webkit-scrollbar-corner{
  background: #179a16;
} */
::-webkit-scrollbar{
  width:5px;
  height:5px;
}
::-webkit-scrollbar-track{
  background: rgb(239, 239, 239);
  border-radius:2px;
}
::-webkit-scrollbar-thumb{
  background: #bfbfbf;
  border-radius:5px;
}
::-webkit-scrollbar-thumb:hover{
  background: #999;
}
::-webkit-scrollbar-corner{
  background: #179a16;
}


body, ul, ol, dl, dd, h1, h2, h3, h4, h5, h6, p, form, fieldset, legend, input, textarea, select, button, th, td {
	margin:0;
	padding:0;
}
h1, h2, h3, h4, h5, h6 {
	font-size:100%;
	font-weight:normal;
}
table {
	font-size:inherit;
}
i{
    font-style:normal
}
input, select {
	font-family:arial,helvetica,clean,sans-serif;
	font-size:100%;
	font-size-adjust:none;
	font-stretch:normal;
	font-style:normal;
	font-variant:normal;
	font-weight:normal;
	line-height:normal;
}
button {
	overflow:visible;
}
th, em, strong, b, address, cite {
	font-style:normal;
	font-weight:normal;
}
li {
	list-style-image:none;
	list-style-position:outside;
	list-style-type:none;
}
img, fieldset {
	border:0 none;
}
ins {
	text-decoration:none;
}
input{
	outline: none;
}
#loadingBox{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999999999999999;
	background-color: rgba(0,0,0,0.5);
	display: none;
}
#loadingBox div{
	position: absolute;
	top: 45%;
	left: 45%;
	width: 30px;
	height: 30px;
	background: url(../img/loadingBox.png) no-repeat 0 0;
	background-size: 30px 30px;
	animation: round_animate 1s linear infinite; 
}
@keyframes round_animate {
	to {
		transform: rotate(1turn);
	}
}
.dialog-box{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.3);
	z-index: 999;
	display: none;
}
.dialog-box-box{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.dialog{width:360px;border:solid 1px #666;border-radius: 5px;overflow: hidden;}
.dialog .title{background-color:#fbaf15;padding:10px;color:#fff;font-weight:bold}
.dialog .title img{float:right}
.dialog .content{background-color:#fff;padding:25px;height:80px}
.dialog .content img{float:left}
.dialog .content span{float:left;padding-top:10px;padding-left:10px}
.dialog .bottom{text-align:right;padding:10px 10px 10px 0px;background-color:#eee}
#Button2{margin-right: 20px;}