* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/*color: var(--font)*/
}

html,
body {
	background-color: #F8F7F5;
}

img {
	vertical-align: middle;
}

a {
	color: inherit;
	text-decoration: none;
}

li {
	list-style: none;
}

input,
textarea {
	outline: none;
	font-family: inherit;
}

:root {
	--active: #F98725;
	--font: #222222;
	--font-low: rgba(34, 34, 34, 0.8);
	--gray: rgba(34, 34, 34, 0.6);
	--gray-low: rgba(34, 34, 34, 0.2);
}

.box {
	width: 1200px;
	margin: 0 auto;
}

nav {
	background-color: #fff;
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	box-shadow: 0 0 10px #ccc;
	z-index: 100;
}

nav .box {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 70px;
	position: relative;
}

nav .menus {
	display: flex;
}

nav .menus li {
	margin: 0 15px;
}

nav .logo {
	position: absolute;
	left: -30px;
	height: 45px;
	top: 0;
	bottom: 0;
	margin: auto;
}

nav .logo img {
	height: 100%;
}

nav .search {
	height: 40px;
	border: 1px solid var(--active);
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	transform: translateX(40%);
	padding: 2px;
	border-radius: 20px;
	display: flex;
	align-items: center;
}

nav .search img {
	margin-left: 10px;
}

nav .search input {
	width: 150px;
	padding: 0 15px;
	border: none;
}

nav .search button {
	height: 32px;
	cursor: pointer;
	width: 60px;
	border-radius: 20px;
	border: none;
	background-color: var(--active);
	color: #fff;
}

footer {
	background-color: #887765;
	padding: 40px 0 20px 0;
	font-size: 14px;
}

footer p,
footer a {
	color: rgba(255, 255, 255, .8);
}

.fot_top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.fot_l {
	width: 45%;
}

.fot_l p{
	letter-spacing: 1px;
}

.fot_l img {
	margin-bottom: 20px;
}



.ewm-container {
    display: flex; /* 使用flex布局使两个二维码并排显示 */
    justify-content: space-between; /* 在两个二维码之间添加间距 */
     gap: 20px; /* 设置两个二维码之间的间距为 20px */
}

.ewm img {
    background-color: #fff;
    padding: 5px;
    border-radius: 5px;
    max-width: 120px;
}

.ewm p {
    font-size: 12px;
    margin-top: 5px;
    text-align: center;
}


.fot_link {
	margin: 40px 0 10px 0;
}

.fot_link>p {
	font-size: 14px;
}

.linklist {
	display: flex;
	flex-wrap: wrap;
}

.linklist a {
	font-size: 12px;
	margin-right: 30px;
	margin-top: 15px;
}

.copy {
	margin: 20px 0;
	text-align: center;
}

.fixBox {
	position: fixed;
	bottom: 100px;
	right: 100px;
}

.fixBox>div {
	height: 100px;
	width: 100px;
	background-color: var(--active);
	border-radius: 50%;
	margin: 10px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	cursor: pointer;
}

.kf {
	position: fixed;
	height: 100vh;
	width: 100vw;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, .31);
	z-index: 999999;
}

.kf>div {
	width: 680px;
	padding: 30px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	background: url(../img/kfbg.png) no-repeat;
	background-size: 100% auto;
}
.kefu{
	position: absolute;
	left: 10px;
	top:0;
	transform: translateY(-40%);
}
.kfmain > p:nth-child(2){
	font-size: 22px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 50px;
}
.kfmain > p:nth-child(3),.kfewm p{
	font-size: 14px;
	color: var(--gray);
	line-height: 1.5;
}
.kfewm{
	text-align: center;
}
.kfewm img{
	margin-top: 30px;
	height: 150px;
}
.kfmain .close{
	position: absolute;
	right: 30px;
	top:30px;
	cursor: pointer;
}
.mob_menu {
	display: none;
}

@media (max-width:768px) {
	.mob_menu {
		display: block;
	}

	.menulist {
		display: none;
	}

	nav {
		display: none;
	}

	.box {
		width: 100%;
	}

	.mob_menu {
		position: sticky;
		top: 0;
		height: 60px;
		box-shadow: 0 0 10px #ccc;
		z-index: 100;
	}

	.mob_menu_show {
		height: 100%;
		background-color: #fff;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 15px;
		border-bottom: 1px solid #ccc;
	}

	.mob_menu_show img {
		height: 40px;
	}

	.menu_btn div {
		width: 26px;
		height: 4px;
		background-color: var(--font-low);
		margin: 3px 0;
		border-radius: 2px;
	}

	.menulist {
		position: fixed;
		top: 60px;
		width: 100%;
		height: calc(100vh - 60px);
		background-color: #fff;
	}

	.menulist_main {
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
	}

	.menus li {
		margin: 20px 0;
	}

	.mob_ewm {
		margin-top: 20px;
	}

	.menulist li.active {
		color: var(--active);
		font-weight: bold;
	}

	footer {
		padding: 15px;
	}

	.fot_top {
		display: block;
	}

	.fot_l {
		width: 100%;
	}

	.fot_l img {
		margin-bottom: 10px;
	}

	.ewm {
		text-align: center;
		margin: 15px 0;
	}

	.fot_link {
		margin: 15px 0;
	}

	.linklist a {
		margin: 15px 15px 0 0;
	}

	.copy {
		margin: 10px 0;
	}

	.fixBox {
		right: 15px;
		bottom: 15px;
	}

	.fixBox>div {
		height: 80px;
		width: 80px;
	}

	.fixBox img {
		height: 30px;
	}

	.fixBox p {
		font-size: 12px;
	}
}