* {
	box-sizing: border-box;
	scrollbar-width: none;/*Firefox滚动条*/
}
html::-webkit-scrollbar {display:none}
body {
	padding: 0;
	margin: 0;
}
.gallery {
	position: absolute;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.cards {
	position: absolute;
	width: 14rem;
	height: 18rem;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.cards li {
	color:white;
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
	width: 15rem;
	height: 22rem;
	line-height: 22rem;
	font-size: 1.5rem;
	font-family: "Microsoft YaHei",Tahoma, Helvetica, Arial, sans-serif;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 0.8rem;
}

.actions {
	position: absolute;
	bottom: 25px;
	left: 50%;
	transform: translateX(-50%);
}

button {
  display:inline-block;
  outline: none;
  border: none;
  padding: 8px 14px;
  background: #414141;
  background-image: -webkit-linear-gradient(top, #575757, #414141);
  background-image: -moz-linear-gradient(top, #575757, #414141);
  background-image: -ms-linear-gradient(top, #575757, #414141);
  background-image: -o-linear-gradient(top, #575757, #414141);
  background-image: linear-gradient(to bottom, #575757, #414141);
  text-shadow: 0px 1px 0px #414141;
  -webkit-box-shadow: 0px 1px 0px #414141;
  -moz-box-shadow: 0px 1px 0px #414141;
  box-shadow: 0px 1px 0px #414141;
  color: #ffffff;
  text-decoration: none;
  margin: 0 auto 10px;
  -webkit-border-radius: 4;
  -moz-border-radius: 4;
  border-radius: 4px;
  padding: 12px 25px;
  font-family: "Signika Negative", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
  line-height: 18px;
}

button:hover {
  background: #bc1717;
  background-image: -webkit-linear-gradient(top, #bc1717, #bc1717);
  background-image: -moz-linear-gradient(top, #bc1717, #bc1717);
  background-image: -ms-linear-gradient(top, #bc1717, #bc1717);
  background-image: -o-linear-gradient(top, #bc1717, #bc1717);
  background-image: linear-gradient(to bottom, #bc1717, #bc1717);
  text-shadow: 0px 1px 0px #bc1717;
  -webkit-box-shadow: 0px 1px 0px #bc1717;
  -moz-box-shadow: 0px 1px 0px #bc1717;
  box-shadow: 0px 1px 0px #bc1717;
  color: #ffffff;
  text-decoration: none;
}

button {
  font-size: 20px;
  font-weight: 400;
}

a {
  color: #88ce02;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

@media (max-width: 799px) {
	.gallery {

}

.cards {
	width: 10rem;
	height: 15rem;
}

.cards li {
	width: 10rem;
	height: 15rem;
	line-height: 15rem;
	font-size: 1rem;
}
	
}