* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}
a{
	text-decoration: none;
	color: black;
}
li {
	list-style: none;
}
body {
	width: 100%;
	font-size: 16px;
}
.slide-up {
  opacity: 0;
  transform: translateY(50px); /* 初始往下偏移 */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-up.active {
  opacity: 1;
  transform: translateY(0); /* 回到正常位置 */
}

.post-fixed{
	height: 80px;
}
#app{
	width: 100%;
}
.hreder{
	width: 100%;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background-color: #fff;
  position: fixed;
  top: 0;
	border-bottom: #dedede solid 1px
}
.nav-logo{
	margin-left: 5%;
}
.nav-logo img{
	height: 45px;
}
.hamburger {
  display: none;
  margin-right: 4%;
}
.hamburger.active .bar:nth-child(2){
	opacity: 0;
}
.hamburger.active .bar:nth-child(1){
	transform: translateY(8px) rotate(45deg);
}
.hamburger.active .bar:nth-child(3){
	transform: translateY(-8px) rotate(-45deg);
}
.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  /* 设置个过渡动画 */
  background-color: #101010;
}
.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 40%;
	margin-left: auto;   /* 使元素靠右 */
}
.nav-item:nth-child(6), .nav-item:nth-child(7) {
	display: none;
}

.nav-link {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  padding: 7px 15px;
  border-radius: 5px;cursor: pointer;
	cursor: pointer;
}
.nav-link:hover {
	color: #ffffff;
	background-color: #ea5c19;
}
.nav-link.active {
	color: #ffffff;
	background-color: #ea5c19;
}
.nav-cbe{
	width: 18%;
	margin-right: 1%;
	margin-left: 5%;
}
.nav-cbe>a:nth-child(1){
	background-color: #ea5c19;
	color: #ffffff;
	transition: background-color 0.3s ease;
  }
.nav-cbe>a:hover{
	background-color: #bb4a14;
	olor: #e2e2e2;
}
.nav-cbe>a.active {
	background-color: #bb4a14;
	olor: #e2e2e2;
}
.nav-cbe>a:nth-child(2){
	background-color: #2f58c3;
	color: #ffffff;
	transition: background-color 0.3s ease;
	margin-left: 10%;
}
.nav-cbe>a:nth-child(2):hover{
	background-color: #3656c4;
	color: #e2e2e2;
}
.nav-cbe>a:nth-child(2).active {
	background-color: #3656c4;
	color: #e2e2e2;
}


.tails{
	background-color: #1f1f1f;
	width: 100%;
}
.tail{
	width: 70%;
	font-size: 16px;
	color: #e7e7e7;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin:auto;
	padding: 50px 0;
	letter-spacing: 1.5px
}
.tail-lief{
	letter-spacing: 3px;
}
.tail-lief ul li img{
	height: 50px;
}
.tail-lief ul li{
	line-height: 50px;
}

.tail-lief .tail-img img{
	height: 40px;
	border-radius: 10px;
	vertical-align: middle;
	line-height: 3.5rem;
}

.tail-right{

}
h3{
	margin-bottom: 10px;
	color: #ea5c19;
}
.m-butt20{
	margin-bottom: 20px;
}
.tail-right .tail-ul ul li{

	line-height: 30px;
}
.tail-right .tail-ul ul li a{
	color: #e7e7e7;
}

.footer {
	height: 60px;
	background-color: #fafafa;
	text-align: center;
}

.footer p {
	font-size: 14px;
	color: #333;
	line-height: 60px;
}

.privacy-link {
	text-decoration: none;
	color: #007bff;
}



@media only screen and (max-width:1400px) {
	/* .nav-menu{
		display: none;
	} */
	.nav-link {
		padding: 4px 8px;
		font-size: 16px;
	}
}
@media only screen and (max-width:1024px) {
  /* 媒体查询用于根据宽度匹配布局 */
	.hamburger{
		display: block;
		cursor: pointer;
	}
	.nav-logo img{
		height: 40px;
	}
	.navbar,
	.post-fixed{
		height: 80px;
	}
	.nav-menu{
		 display: block;
		position: fixed;
		left: -100%;
		top: 4.8rem;
		flex-direction: column;
		background-color: #fff;
		width: 100%;
		text-align: left;
		transition: all 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
	}
	.nav-menu.active{
		left: 0;
	}

	.nav-item {
	  width: 100%;
	  border-top: 1px solid #d0cfc9;
	}
	.nav-link {
		display: block;
		padding: 1.3rem 0 1.3rem 3%;
		border-radius: 1px;
		position: relative;
	}
	.nav-link::after {
	  content: '>';
	  position: absolute;
	  right: 30px;
	  top: 50%; /* 垂直居中 */
	  transform: translateY(-50%); /* 精确居中 */
	  font-size: 2rem; /* 设置大于号的大小 */
	  color: #000000;
	  font-weight: 300;
	}

	.nav-cbe{
		display: none;
	}
	.nav-item:nth-child(6), .nav-item:nth-child(7) {
		display: block;
	}
	.nav-item:nth-child(7){
		margin-bottom: 200%;
		border-bottom: 1px solid #d0cfc9;
	}


	.tail{
		/* height: 50vh; */
		width: 90%;
		font-size: 14px;
		color: #e7e7e7;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin:auto;
		padding: 30px 0;
		letter-spacing: 1.5px
	}
	/* .tail-lief{
		width: 100%;
		margin: auto;
		letter-spacing: 3px;
	} */
	.tail-lief ul li{
		line-height: 40px;
	}
	.tail-lief ul li img{
		height: 40px;
	}

	.tail-lief .tail-img img{
		height: 40px;
		border-radius: 10px;
		vertical-align: middle;
		line-height: 3.5rem;
	}

	.tail-right{

	}

	.footer {
		height: 40px;
		background-color: #fafafa;
		text-align: center;
	}

	.footer p {
		font-size: 12px;
		color: #333;
		line-height: 40px;
	}

}
@media only screen and (max-width: 768px) {
	.nav-logo img{
		height: 35px;
	}
	.navbar,
	.post-fixed{
		height: 70px;
	}
	.nav-menu{
		top: 4.2rem;
	}

	.tail{
		/* height: 50vh; */
		width: 90%;
		font-size: 14px;
		color: #e7e7e7;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin:auto;
		/*padding: 20px 0;*/
		letter-spacing: 1.5px
	}
	.tail-lief{
		width: 100%;
		letter-spacing:1px;
		margin: auto;
		text-align: center;
	}
	.tail-right{
		/* padding-top: 40px;
		text-align: center;
		margin: auto; */
		display: none;
	}
	.tail-lief ul li img{
		height: 35px;
	}

	/* .footer {
	   display: none;
	} */
	.footer p span{
		display: none;
	}
}

