/* 通用样式 */
@media (max-width: 1919px) and (min-width: 768px) {
	html {
		zoom: 80%;
	}
	@-ms-viewport { width: 1920px; }
}
* {
	margin: 0px;
	padding: 0px;
	border: none;
}
a {
	text-decoration: none;
	outline: none;
}
img {
	border: none;
}
html {
	font-size: 12px;
	font-family: Microsoft yahei, Arial, sans-serif;
	background-color: #ffffff;
}
body {
	min-width: 1440px;
	margin: 0px auto;
	background: #f6f6f6;
	/* background: #EFEEEC; */
}
.clear {
	clear: both;
}
.inline_block {
	display: inline-block;
}
.right {
	float: right;
}
.container {
	width: 1440px;
	margin: 0 auto;
	min-height: 1440px;
	/* background: #ffffff; */
}


/* 滚动条样式 */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
::-webkit-scrollbar-thumb {
	border-radius: 8px;
	box-shadow: 0 0 8px #0c3b2e;
	background: #EFEEEC;
}
::-webkit-scrollbar-track {
	box-shadow: inset 0 0 8px #f3eee8;
}


/* 头部样式 */
.header {
	width: 100%;
	height: 100px;
	top: 0px;
	z-index: 99;
}
.header_position {
	position: fixed;
	width: 100%;
	height: 100px;
	background: #FFFFFF;
}
.header_mian {
	width: 1680px;
	height: 100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.logo {
	display: inline-flex;
    align-items: center;
}
.logo img {
	width: 65px;
}
.logo_text {
	margin-left: 20px;
}
.logo_text h1 {
	color: #333333;
    font-size: 28px;
}
.logo_text span {
	color: #999999;
    font-size: 20px;
}




.nav {

}
.nav_item {
	display: inline-block;
    height: 28px;
    font-weight: 400;
    font-size: 20px;
    color: #333333;
    padding: 0px 15px;
}


.search {
	width: 250px;
    height: 50px;
    border-radius: 50px;
    border: 2px solid #07c160;
    display: flex;
    align-items: center;
}
.search_keyword {
	width: 200px;
    height: 46px;
    font-size: 20px;
    font-weight: 400;
    color: #999999;
    margin-left: 20px;
    outline: none;
}




.login_register {
	width: 120px;
	height: 50px;
	background: #07c160;
	border-radius: 25px 25px 25px 25px;
	color: #FFFFFF;
	font-size: 20px;
	text-align: center;
	line-height: 50px;
}
