* {
	padding: 0;
	margin: 0;
	text-decoration: none;
	list-style: none;
	box-sizing: border-box;
}

body {
	max-width: 100vw;
	overflow-x: hidden;
	font-family: proxima-nova, Arial Fallback, arial, sans-serif;
	background-color: #F3F3F3;

}

a {
	text-decoration: none;
	color: #000;
	display: block;
}

img {
	object-fit: cover;
}

/* 头部广告位 */
.de_iv_adv {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 5px 0;
	/* background-color: #F8F8F8; */
	margin: 10px 0 0px;
}

/* 底部广告位 */
.postionFixed {
	width: 100%;
	min-height: 60px;
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #F8F8F8;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 9999;
}

.footer {
	width: 100%;
	background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
	padding: 60px 0 0;
	font-family: Poppins, sans-serif;
	position: relative;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #6C8EEE, #a855f7, #ec4899, #6C8EEE);
	background-size: 300% 100%;
	animation: gradientMove 8s ease infinite;
}

@keyframes gradientMove {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

.f_container {
	width: 80%;
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 60px;
	padding-bottom: 40px;
}

.f_col {
	display: flex;
	flex-direction: column;
}
.f_categories,.f_legal{
	align-items: center;
}

.f_logo {
	display: inline-block;
	margin-bottom: 20px;
}

.f_logo img {
	width: 180px;
	height: auto;
	filter: brightness(1.2);
}

.f_desc {
	color: rgba(255, 255, 255, 0.65);
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 25px;
}

.f_social {
	display: flex;
	gap: 12px;
}

.social-link {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	color: rgba(255, 255, 255, 0.7);
	transition: all 0.3s ease;
}

.social-link:hover {
	background: #6C8EEE;
	color: #fff;
	transform: translateY(-3px);
}

.f_title {
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 12px;
}

.f_title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 35px;
	height: 3px;
	background: linear-gradient(90deg, #6C8EEE, #a855f7);
	border-radius: 2px;
}

.f_links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.f_links li {
	margin-bottom: 12px;
}

.f_links a {
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.f_links a::before {
	content: '';
	width: 0;
	height: 2px;
	background: #6C8EEE;
	transition: width 0.3s ease;
}

.f_links a:hover {
	color: #fff;
}

.f_links a:hover::before {
	width: 12px;
}

.f_bottom {
	width: 100%;
	padding: 25px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
}

.f_bottom p {
	color: rgba(255, 255, 255, 0.4);
	font-size: 13px;
	margin: 0;
}

@media (max-width: 960px) {
	.f_container {
		width: 90%;
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
	
	.f_about {
		grid-column: 1 / -1;
	}
}

@media (max-width: 600px) {
	.footer {
		padding: 40px 0 0;
	}
	
	.f_container {
		width: 92%;
		grid-template-columns: 1fr;
		gap: 35px;
	}
	
	.f_about {
		grid-column: 1;
	}
	
	.f_logo img {
		width: 150px;
	}
}

@media (max-width: 760px) {

	.header {
		width: 100%;
		height: auto;
		position: relative;
		background-color: #fff;
		box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .3);
	}

	.header-box {
		width: 100%;
		height: 50px;
		margin: 0 auto;
		display: flex;
		justify-content: space-around;
		align-items: center;
	}

	.h-title {
		width: 47%;
		height: 40px;
	}

	.h-title img {
		width: 100%;
		height: 100%;
		object-fit: contain;
		display: block;
	}



	.menu {
		width: 5%;
		height: 33px;
		display: block;
	}


	.search-img {
		width: 7%;
		height: 30px;
	}

	.search-img2 {
		display: none;
	}

	.nav_list {
		display: flex;
		justify-content: space-around;
		width: 100%;
		height: calc(100vh - 60px);
		padding: 20px 15px;
		align-content: flex-start;
		flex-wrap: wrap;
		background-color: #fff;
		transition: all 0.3s linear;
		transform: translateX(-100%);
		position: absolute;
		top: 50px;
		left: 0;
		z-index: 9999999;
		overflow-y: auto;
	}

	.nav_list a {
		width: 100%;
		display: flex;
		align-items: center;
		font-size: 16px;
		font-weight: 500;
		line-height: 1.2;
		text-decoration: none;
		padding: 15px 10px;
		margin-bottom: 8px;
		border-radius: 12px;
		font-family: "times new roman";
		color: #333;
		text-transform: capitalize;
		background-color: #f8f8f8;
		transition: all 0.2s ease;
	}

	.nav_list a:hover {
		background-color: #6C8EEE;
		color: #fff;
		transform: translateX(5px);
	}

	.nav_list a span {
		margin-right: 10px;
		font-size: 18px;
	}

	.aClassify {
		width: 100%;
		margin: 0 auto;
	}

	.search_text {
		width: 100%;
		height: calc(100vh - 60px);
		background-color: #FFFFFF;
		display: flex;
		justify-content: center;
		padding: 50px 0 0;
		position: relative;
		align-content: flex-start;
		transition: all 0.3s linear;
		transform: translateX(-100%);
		position: absolute;
		top: 50px;
		z-index: 9999999;
	}

	#seach {
		display: block;
		border: none;
		outline: 0;
		cursor: pointer;
		height: 50px;
		width: 95%;
		font-size: 14px;
		text-indent: 1em;
		background-color: #F3F3F6;
		border-radius: 24px;
	}

	#seach::placeholder {
		color: #aaa;
	}

	#seach:focus {
		background-color: #fff;
		box-shadow: 0 0 0 2px #6C8EEE;
	}

	.seach-img {
		width: 15%;
		height: 40px;
		display: flex;
		justify-content: center;
		align-items: center;
		position: absolute;
		top: 55px;
		right: 5px;
	}

	.seach-img img {
		width: 30px;
		height: 30px;
	}

	.footer {
		width: 100%;
		padding: 10px 5% 20px;
		flex-wrap: wrap;
	}

	.f_inner-box {
		width: 100%;
	}

	.f_inner-box:nth-of-type(2) {
		width: 100%;
		text-align: left;
		justify-content: flex-start;
	}

	.f_title {
		width: 100%;
	}

	.about>a {
		text-align: left;
		padding: 0;
	}
	.f_categories, .f_legal {
		align-items: flex-start;
	}
}

@media (min-width: 760px) {

	.header {
		width: 100%;
		margin: 0 auto;
		height: auto;
		position: sticky;
		top: 0px;
		padding: 5px 10%;
		background-color: #fff;
		box-shadow: 0 5px 7px rgba(0, 0, 0, 0.6);
		z-index: 9999999;
	}

	.header_content {
		width: 100%;
		height: auto;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.header-box {
		/* width: 50%; */
		display: flex;
		justify-content: flex-start;
		align-items: center;
		gap: 10px;
	}

	#menu {
		display: none;
	}

	.search-img {
		display: none;
	}

	.h-title {
		width: 23%;
	}

	.h-title img {
		width: 100%;
		height: 60px;
		object-fit: contain;
		display: block;
		margin: auto;
	}

	.h2-box {
		width: 85%;
	}

	.bor-box {
		width: 96%;
		height: 50px;
		padding: 0 2%;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: relative;
	}

	.search-img {
		width: 7%;
		height: 25px;
	}

	#del {
		display: none !important;
	}

	.search-img2 {
		width: 30px;
		height: 30px;
		display: none;
	}

	.nav_list {
		display: flex !important;
		align-items: center;
		gap: 5px;
		width: auto;
		height: auto;
	}

	.nav_list a {
		width: auto;
		display: block;
		font-size: 15px;
		font-weight: 500;
		text-align: center;
		text-decoration: none;
		padding: 8px 14px;
		color: #444;
		text-transform: capitalize;
		border-radius: 20px;
		transition: all 0.3s ease;
	}

	.nav_list a:hover {
		color: #fff;
		background-color: #6C8EEE;
	}

	.nav_list a span {
		margin-right: 5px;
	}

	.search_text {
		width: 25%;
		height: 40px;
		background-color: #F5F5F5;
		display: flex;
		justify-content: center;
		align-items: center;
		overflow: hidden;
		border-radius: 20px;
		border: 1px solid #e0e0e0;
		transition: all 0.3s ease;
	}

	.search_text:focus-within {
		border-color: #6C8EEE;
		box-shadow: 0 0 0 2px rgba(108, 142, 238, 0.2);
	}

	#seach {
		display: block;
		border: none;
		outline: 0;
		cursor: pointer;
		height: 100%;
		width: 80%;
		font-size: 14px;
		background-color: transparent;
		text-indent: 1em;
	}

	#seach::placeholder {
		color: #999;
	}

	.seach-img {
		width: 40px;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		cursor: pointer;
		transition: transform 0.2s ease;
	}

	.seach-img:hover {
		transform: scale(1.1);
	}

	.seach-img img {
		width: 20px;
		height: 20px;
	}


}