::-webkit-scrollbar {
	width: 10px;
	/* 滚动条宽度 */
}

::-webkit-scrollbar-thumb {
	background-color: #cccccc;
	/* 滚动条颜色 */
	border-radius: 6px;
	/* 滚动条圆角 */
}

::-webkit-scrollbar-track {
	background-color: #f0f0f0;
	/* 滚动条轨道颜色 */
}

/* 自定义Firefox浏览器的滚动条 */
::-moz-scrollbar {
	width: 10px;
	/* 滚动条宽度 */
}

::-moz-scrollbar-thumb {
	background-color: #888;
	/* 滚动条颜色 */
	border-radius: 6px;
	/* 滚动条圆角 */
}

::-moz-scrollbar-track {
	background-color: #f0f0f0;
	/* 滚动条轨道颜色 */
}

/* 自定义IE浏览器的滚动条（需要特定的IE前缀） */
::-ms-scrollbar {
	width: 10px;
	/* 滚动条宽度 */
}

::-ms-scrollbar-thumb {
	background-color: #888;
	/* 滚动条颜色 */
	border-radius: 6px;
	/* 滚动条圆角 */
}

::-ms-scrollbar-track {
	background-color: #f0f0f0;
	/* 滚动条轨道颜色 */
}

/* 使用CSS标准来自定义滚动条颜色和宽度 */
body {
	scrollbar-color: #888 #f0f0f0;
	scrollbar-width: thin;
}

.header {
	background-color: rgb(19, 19, 29);
	height: 60px;
}

.header-i {
	width: 1200px;
	height: 60px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-i img {
	width: 82px;
	height: 41px;
}

.header-i ul {
	display: flex;
	color: #cccccc;
	width: 600px;
}

.header-i ul li {
	width: 20%;
	height: 60px;
	line-height: 60px;
	text-align: center;
	font-size: 14px;
}

.header-i ul li a{
	color: #cccccc;
}

.header-i ul li.active a{
	color: #bea269;
}

.header-i ul li a:hover {
	color: #bea269;
}

.footer {
	background-color: rgb(19, 19, 29);
	color: #ffffff;
	width: 100%;
	padding-top: 40px;
	padding-bottom: 30px;
}

.footer-i {
	width: 1200px;
	margin: auto;
}

.footer-i ul {
	display: flex;
	align-content: center;
	justify-content: center;
	font-size: 14px;
	color: #999999;
}

.footer-i ul li{
	cursor: pointer;
}

.footer-i ul a{
	color: #999999;
}

.footer-i .footer-line {
	width: 1px;
	background-color: #222222;
	height: 20px;
}

.footer-i ul .wen {
	width: 120px;
	text-align: center;
}

.footer-info {
	width: 33.33%;
	text-align: center;
	font-size: 14px;
	color: #666666;
	margin-top: 20px;
}

.banquan {
	color: #655434;
	font-size: 14px;
	text-align: center;
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
justify-content: center;
}

.banquan a{
	color: #655434;
}

.foot {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	color: #989898;
	font-size: 12px;
	padding: 15px 0;
}

.foot img {
	width: 50px;
	margin-right: 10px;
}

.foot .ip {
	padding: 0 2px;
	border: 1px solid #989898;
	border-radius: 4px;
	margin-left: 10px;
}

.index-title {
	font-size: 24px;
	text-align: center;
	padding-top: 35px;
}

.index-miaoshu {
	text-align: center;
	font-size: 12px;
	color: #a88f5f;
	margin-top: 15px;
}

.head-niu {
	display: none;
}

.ms-ul{
	display: none;
}

.ms-ul li a{
	color: rgb(204, 204, 204);
}

.slideUp{
	opacity: 0;
	animation: slide-up 1s forwards;
}

@keyframes slide-up {
	0% {
		transform: translateY(100%);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

.slideDown{
	opacity: 0;
	animation: slide-down 1s forwards;
}

@keyframes slide-down {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.slideIn{
	opacity: 0;
	animation: slide-in 1s forwards;
}

@keyframes slide-in {
	0% {
		transform: translateX(100%);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

.scaleUp{
	animation: scale-up 1s forwards;
}

@keyframes scale-up {
	0% {
		transform: scale(0.1);
	}

	100% {
		transform: scale(1);
	}
}

.fadeIn{
	opacity: 0;
	transform: translateX(-100%);
	animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@media only screen and (max-width: 600px) {
	::-webkit-scrollbar {
		width: 0px;
	}

	.header-i {
		width: 100%;
	}

	.head-niu {
		width: 30px;
		height: 30px;
		background-color: #222222;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-right: 10px;
	}

	.header-i ul {
		display: none;
	}

	.ms-ul {
		width: 100%;
		z-index: 100;
		position: absolute;
		background-color: #13131d;
		padding-bottom: 15px;
	}

	.ms-ul li {
		padding: 15px 0;
		margin: 0 35px;
		border-bottom: 1px dashed #eeeeee;
		color: rgb(204, 204, 204);
		font-size: 14px;
	}

	.footer-i {
		width: 100%;
		margin: auto;
	}

	.footer-info {
		width: 100%;
		font-size: 14px;
	}

	.footer-i ul {
		font-size: 14px;
	}

	.footer-i ul .wen {
		width: 68px;
		text-align: center;
	}

	.foot {
		flex-wrap: wrap;
		font-size: 11px;
	}
	
	.foot img {
		width: 45px;
		margin-right: 10px;
	}
}

@media only screen and (min-width: 601px) and (max-width: 1024px) {
	::-webkit-scrollbar {
		width: 0px;
	}

	.header-i {
		width: 100%;
	}

	.footer-i {
		width: 100%;
		margin: auto;
	}

	.footer-info {
		width: 50%;
	}
}