body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f8f8f8;
}

header {
	background-color: #1a1a1a;
	color: white;
	padding: 10px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header div a {
	color: white;
	text-decoration: none;
	margin: 0 10px;
}

.banner {
	background-image: url('../img/index/background/Minecraft.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	text-align: right;
	padding: 100px 0;
	color: white;
}

.banner button {
	position: relative;
	left: -10%;
	background-color: #007bff;
	color: white;
	border: none;
	padding: 10px 20px;
	font-size: 16px;
	cursor: pointer;
	border-radius: 30px;
}

.team {
	display: flex;
	justify-content: space-around;
	padding: 40px;
	background-color: white;
}

.team-member {
	text-align: center;
}

.team-member img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
}

.stats {
	display: flex;
	justify-content: space-around;
	padding: 54px;
	background-color: white;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

.stats div {
	text-align: center;
}

footer {
	text-align: center;
	padding: 10px 0;
	background-color: #1a1a1a;
	color: white;
	position: fixed;
	width: 100%;
	bottom: 0;
}

#iron {
	width: 60px;
	height: 60px;
}

nav ul {
	list-style: none;
	display: flex;
	justify-content: flex-start;
	padding: 0;
	margin: 0;
}

.nav-item {
	font-size: 25px;
	margin-left: 50px;
	position: relative;
}

.nav-item a {
	text-decoration: none;
	color: white;
	transition: color 0.3s ease;
}

.nav-item a:hover {
	color: #007bff;
}

.nav-item a::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: #007bff;
	transform: scaleX(0);
	transform-origin: bottom left;
	transition: transform 0.3s ease;
}

.nav-item a:hover::after {
	transform: scaleX(1);
}

#title {
	font-family: Minecraft;
	line-height: 42px;
	float: left;
}

.server_IF {
	width: 100%;
	height: 980px;
	padding: 50px 0;	
	display: flex;
	justify-content: center;
	align-items: center;
	
}
#zt_iframe{
	border: none;
}

@font-face {
   font-family: 'Minecraft'; /* 自定义字体名称 */
   src: url('font/1_Minecraft-Regular(英细).otf') format('otf');
}
/*
.server_IF::-webkit-scrollbar{
	background-color: #152215;
}
.server_IF::-webkit-scrollbar-thumb{
	border-radius: 10px;
}

.server_IF::-webkit-scrollbar-button{
	display: none !important;
}
*/