html {
	width: 100%;
	overflow-x: hidden;
}

body {
	width: inherit;
	overflow-x: hidden;
}

a.nounderline:hover {
	text-decoration: none;
}

.nav-container {
	position: fixed;
	top: 0;
	left: 0;
	width: inherit;
	z-index: 9999;
}

.nav-container .nav-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1360px;
}

.nav-content .logo {
	flex-shrink: 0;
}

.nav-content .nav-bar {
	flex-grow: 1;
}

.nav-more {
	flex-shrink: 0;
}

@media screen and (max-width: 767px) {
	body {
		padding-top: 60px;
	}

	.nav-container {
		background-color: white;
		box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
		background-image: linear-gradient(to right, #036CDD, #87C6FB);
	}

	.nav-container .nav-content {
		padding: 0 10px;
		margin: auto;
	}

	.nav-content .logo {
		width: 100px;
	}

	.nav-content .nav-bar {
		display: none;
		position: fixed;
		top: 60px;
		left: 0;
		width: 100%;
		height: calc(100% - 70px);
		border-top: 1px solid #e4eaec;
		background-color: rgba(0, 0, 0, 0.2);
		list-style: none;
		margin-bottom: 0;
		padding: 0;
	}

	.nav-content .nav-bar.expended {
		display: block;
	}

	.nav-bar .nav-item {
		list-style: none;
		background-color: white;
	}

	.nav-bar .nav-item:first-child {
		padding-top: 10px;
	}

	.nav-bar .nav-item:last-child {
		padding-bottom: 10px;
	}

	.nav-bar .nav-item .nav-link {
		display: block;
		font-size: 14px;
		color: #323232;
		line-height: 40px;
		padding: 0 15px;
	}

	.nav-bar .nav-item .nav-link:hover {
		font-weight: bold;
		color: #049dff;
	}

	.nav-bar .nav-item .nav-link.active {
		font-weight: bold;
		color: #049dff;
	}

	.nav-more {
		display: flex;
		align-items: center;
	}

	.nav-more .nav-menu {
		position: relative;
		display: inline-block;
		border: none;
		padding: 20px;
		height: 60px;
		background-color: transparent;
		vertical-align: middle;
		outline: none;
	}

	.nav-menu .hamburger-bar {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		margin: auto;
		display: block;
		width: 17px;
		height: 2px;
		background-color: #2a333c;
	}

	.nav-menu .hamburger-bar::before,
	.nav-menu .hamburger-bar::after {
		display: block;
		content: "";
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #2a333c;
		transition: all 0.2s;
	}

	.nav-menu .hamburger-bar::before {
		top: -5px;
	}

	.nav-menu .hamburger-bar::after {
		bottom: -5px;
	}

	.nav-menu.active .hamburger-bar {
		background-color: transparent;
	}

	.nav-menu.active .hamburger-bar::before {
		top: 0;
		transform: rotate(45deg);
	}

	.nav-menu.active .hamburger-bar::after {
		bottom: 0;
		transform: rotate(-45deg);
	}

	.nav-more .nav-login,
	.nav-more .nav-register {
		display: none;
	}

	.nav-mini-btn {
		display: inline-block;
		height: 24px;
		font-size: 12px;
		color: white !important;
		line-height: 24px;
		background: #0070DE;
		border-radius: 2px;
		margin-right: 10px;
		padding: 0 10px;
	}

	.nav-more .user-info {
		position: relative;
		display: flex;
		align-items: center;
	}

	.nav-more .user-info .avatar {
		width: 34px;
		height: 34px;
		border-radius: 50%;
		object-fit: cover;
		object-position: center;
	}

	.nav-more .user-info .name {
		font-size: 14px;
		color: white;
		margin: 0 4px 0 10px;
	}

	.nav-more .user-info .toggle-btn {
		width: 20px;
		height: 20px;
		border: none;
		background: url('../../static/images/icon_more_down.png') no-repeat center;
		background-size: 100%;
		outline: none;
		transition: transform 0.2s;
	}

	.nav-more .user-info:hover .toggle-btn {
		transform: rotate(-180deg);
	}

	.nav-more .user-info:hover .dropdown {
		display: block;
	}

	.nav-more .user-info .dropdown {
		display: none;
		position: absolute;
		top: 100%;
		right: 0;
		border-radius: 4px;
		padding-top: 10px;
	}

	.nav-more .user-info .dropdown::after {
		position: absolute;
		top: 0;
		right: 6px;
		width: 10px;
		height: 10px;
		border: 5px solid transparent;
		border-bottom-color: white;
		content: '';
		display: block;
	}

	.nav-more .user-info .dropdown .dropdown-item {
		font-size: 14px;
		padding: 8px 24px;
		background-color: white;
		cursor: pointer;
	}

	.nav-more .user-info .dropdown .dropdown-item:hover {
		background-color: #eee;
	}

	.nav-more .user-info .dropdown .dropdown-item:first-child {
		border-radius: 4px 4px 0 0;
	}

	.nav-more .user-info .dropdown .dropdown-item:last-child {
		border-radius: 0 0 4px 4px;
	}
}

@media screen and (min-width: 768px) {

	.nav-container.fixed {
		box-shadow: inset 0 0 4px rgb(3, 108, 221, 0.3), 0 2px 2px rgba(0, 0, 0, 0.1);
		background-image: linear-gradient(to right, #036CDD, #87C6FB);
	}

	.nav-container.sticky {
		background-image: linear-gradient(to right, #036CDD, #87C6FB);
	}

	.nav-container .nav-content {
		height: 60px;
		padding: 0 14px;
	}

	.nav-content .logo {
		width: 100px;
	}

	.nav-content .nav-bar {
		text-align: center;
		margin-bottom: 0;
	}

	.nav-bar .nav-item {
		display: inline-block;
	}

	.nav-bar .nav-item .nav-link {
		display: block;
		font-size: 14px;
		color: white;
		font-weight: bold;
		padding: 0;
		margin: 0 20px;
	}

	.nav-container.fixed .nav-bar .nav-item .nav-link {
		color: white;
	}

	.nav-container .nav-bar .nav-item .nav-link:hover {
		color: white;
	}

	.nav-container .nav-bar .nav-item .nav-link.active {
		position: relative;
		color: white;
	}

	.nav-bar .nav-item .nav-link.active::after {
		position: absolute;
		bottom: -2px;
		left: 0;
		right: 0;
		margin: 0 auto;
		content: "";
		display: block;
		width: 20px;
		height: 2px;
		background-color: white;
		border-radius: 1px;
	}

	.nav-mini-btn {
		display: none;
	}

	.nav-more .nav-login {
		display: inline-block;
		width: 80px;
		height: 30px;
		font-size: 14px;
		color: #0070DE;
		line-height: 30px;
		text-align: center;
		border-radius: 15px;
		background-color: white;
	}

	.fixed .nav-more .nav-login,
	.sticky .nav-more .nav-login {
		color: #0070DE;
	}

	.nav-more .nav-login:hover {
		background-color: #e5f0fc;
	}

	.nav-more .nav-login .head {
		width: 40px;
		margin: 0 10px;
	}

	.nav-more .nav-register {
		display: inline-block;
		width: 120px;
		height: 30px;
		font-size: 14px;
		color: white;
		line-height: 30px;
		text-align: center;
		background: #0070DE;
		border-radius: 15px;
		margin-left: 6px;
	}

	.sticky .nav-more .nav-register {
		background: linear-gradient(180deg, #0053FF 0%, #007BFF 40%, #2C9BFF 73%, #60B7FF 100%);
		border: none;
	}

	.nav-more .nav-register:hover {
		background: #0162c4;
	}

	.sticky .nav-more .nav-register:hover {
		background: linear-gradient(180deg, #0254f7 0%, #0277f3 40%, #2a92ee 73%, #58acf0 100%);
	}

	.nav-more .nav-menu {
		display: none;
	}

	.nav-more .user-info {
		position: relative;
		display: flex;
		align-items: center;
	}

	.nav-more .user-info .avatar {
		width: 40px;
		height: 40px;
		border-radius: 50%;
		object-fit: cover;
		object-position: center;
	}

	.nav-more .user-info .name {
		font-size: 14px;
		color: white;
		margin: 0 4px 0 10px;
	}

	.nav-more .user-info .toggle-btn {
		width: 20px;
		height: 20px;
		border: none;
		background: url('../../static/images/icon_more_down.png') no-repeat center;
		background-size: 100%;
		outline: none;
		transition: transform 0.2s;
	}

	.nav-more .user-info:hover .toggle-btn {
		transform: rotate(-180deg);
	}

	.nav-more .user-info:hover .dropdown {
		display: block;
	}

	.nav-more .user-info .dropdown {
		display: none;
		position: absolute;
		top: 100%;
		right: 0;
		border-radius: 4px;
		padding-top: 10px;
	}

	.nav-more .user-info .dropdown::after {
		position: absolute;
		top: 0;
		right: 6px;
		width: 10px;
		height: 10px;
		border: 5px solid transparent;
		border-bottom-color: white;
		content: '';
		display: block;
	}

	.nav-more .user-info .dropdown .dropdown-item {
		font-size: 14px;
		padding: 8px 24px;
		background-color: white;
		cursor: pointer;
	}

	.nav-more .user-info .dropdown .dropdown-item:hover {
		background-color: #eee;
	}

	.nav-more .user-info .dropdown .dropdown-item:first-child {
		border-radius: 4px 4px 0 0;
	}

	.nav-more .user-info .dropdown .dropdown-item:last-child {
		border-radius: 0 0 4px 4px;
	}
}

@media screen and (min-width: 992px) {
	.nav-container .nav-content {
		height: 64px;
		padding: 0 20px;
	}

	.nav-content .logo {
		width: 110px;
	}

	.nav-bar .nav-item .nav-link {
		font-size: 15px;
		margin: 0 24px;
	}

	.nav-more .nav-login {
		width: 94px;
		height: 34px;
		font-size: 15px;
		line-height: 34px;
		border-radius: 17px;
	}

	.nav-more .nav-register {
		width: 140px;
		height: 34px;
		font-size: 15px;
		line-height: 34px;
		border-radius: 17px;
		margin-left: 10px;
	}
}

@media screen and (min-width: 1200px) {
	.nav-container .nav-content {
		height: 80px;
		padding: 0 20px;
		margin: 0 auto;
	}

	.nav-content .logo {
		width: 130px;
	}

	.nav-bar .nav-item .nav-link {
		font-size: 18px;
		margin: 0 40px;
	}

	.nav-more .nav-login {
		width: 104px;
		height: 40px;
		font-size: 16px;
		line-height: 40px;
		border-radius: 20px;
	}

	.nav-more .nav-register {
		width: 160px;
		height: 40px;
		font-size: 16px;
		line-height: 40px;
		border-radius: 20px;
	}
}

@media screen and (min-width: 1600px) {
	.nav-container .nav-content {
		padding: 0;
	}
}