html,
body {
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
	height: 100%;
	width: 100%;
}

.box-width {
	width: 80%;
	min-width: 1180px;
	margin: 0 auto;
}

.body-container {
	height: 100%;
	width: 100%;
}

.head-container {
	padding: 24px 0 0;
}

.logo-box {
	width: 80%;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo-box>a>img {
	min-height: 64px;
}

.search-box {
	display: flex;
	align-items: center;
	max-width: 500px;
	width: 100%;
}

.search-input {
	background-color: #fff;
	border: 1px solid #7EAED6;
	border-radius: 4px;
	flex: 1;
	padding: 10px;
	font-size: 16px;
	outline: none;
}

.search-input::placeholder {
	color: #888;
}

.search-button {
	padding: 10px 20px;
	border: none;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.tabs-container {
	background-color: #005BAC;
	margin: 20px auto;
}

.tabs-container .tabs {
	padding: 0;
	margin: 0 auto;
	color: #FEFEFE;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(8, 1fr);
}

.tabs-container .tabs .tab {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px;
	text-align: center;
	cursor: pointer;
	font-size: 16px;
	font-weight: 540;
	letter-spacing: 0.02rem;
	transition: background-color 0.3s ease, color 0.3s ease;
	position: relative;
}

.tabs-container .tabs .tab>a {
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	font-size: 0.9rem;
	color: #fff;
	height: 100%;
	width: 100%;
}

.tabs-container .tabs .tab img {
	width: 18px;
	height: 18px;
	margin-right: 6px;
}

.tabs-container .tabs .tab:hover {
	background-color: #007bff;
	color: #fff;
}

.tabs-container .tabs .tab .active {
	background-color: #007bff;
	color: #fff;
	border-bottom: 2px solid #007bff;
}

.dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	list-style: none;
	padding: 0;
	margin: 0;
	background-color: #317BBC;
	opacity: 0.9;
	z-index: 1000;
}

.dropdown-menu li {
	padding: 14px;
	border-bottom: 2px solid #7AABD6;
}

.dropdown-menu li a {
	text-decoration: none;
	color: #FEFEFE;
	display: block;
}

.dropdown-menu li:hover {
	background-color: #007bff;
	font-weight: 540;
	color: #fff;
}

.tab.dropdown:hover .dropdown-menu {
	display: block;
}

.tabs-container .top-banner-line {
	height: 28px;
	background-color: #D9EBFF;
}

.tabs-container .top-banner-box {
	min-height: 420px;
}

.tab-content {
	padding: 20px 0 0;
	background-color: #fff;
	position: relative;
}