/* Variables */
:root {
	--airflex-bg: #f4f6f8;
	--airflex-ink: #1b2430;
	--airflex-primary: #0f766e;
	--airflex-accent: #d97706;
}

/* Base */
* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--airflex-bg);
	color: var(--airflex-ink);
	font: 400 16px/1.7 "Microsoft YaHei", sans-serif;
}

p {
	margin-top: 0;
	margin-bottom: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Microsoft YaHei", sans-serif;
	font-weight: 600;
}

strong,
b {
	font-weight: 600;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--airflex-primary);
}

a:hover {
	color: var(--airflex-accent);
}

:focus-visible {
	outline: 3px solid var(--airflex-accent);
	outline-offset: 2px;
}

/* Header */
.airflex-container {
	width: 100%;
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: 1rem;
}

.container {
	width: 100%;
	padding: 0 3%;
	margin-right: auto;
	margin-left: auto;
}

#aft-header {
	background: #fff;
	border-bottom: 1px solid #d9dde2;
}

.aft-logo {
	min-width: 0;
}

.logo {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--airflex-ink);
	font-size: 1.5rem;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
}

.logo:hover {
	color: var(--airflex-primary);
}

.logo-image {
	width: 149px;
	margin-top: 8px;
}

#aft-header #aft-mainmenu {
	align-self: flex-end;
}

.airflex-header-sticky #aft-header {
	position: sticky;
	top: 0;
	z-index: 50;
}

/* Top bar */
#aft-top-bar .row {
	align-items: center;
}

#aft-top-bar p {
	margin-bottom: 0;
}

.row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.col-12 {
	width: 100%;
}

.col-6 {
	width: 50%;
}

.col-4 {
	width: 33.3333%;
}

.col-3 {
	width: 25%;
}

.col-2 {
	width: 16.6667%;
}

.col-1 {
	width: 8.3333%;
}

@media (min-width: 768px) {
	.col-md-12 {
		width: 100%;
	}

	.col-md-6 {
		width: 50%;
	}

	.col-md-4 {
		width: 33.3333%;
	}

	.col-md-3 {
		width: 25%;
	}
}

@media (min-width: 992px) {
	.col-lg-12 {
		width: 100%;
	}

	.col-lg-6 {
		width: 50%;
	}

	.col-lg-4 {
		width: 33.3333%;
	}

	.col-lg-3 {
		width: 25%;
	}

	.col-lg-2 {
		width: 16.6667%;
	}

	.col-lg-1 {
		width: 8.3333%;
	}
}

#aft-top-bar {
	color: #333;
	height: auto;
	font-size: 90%;
	background: linear-gradient(to bottom, #fff 0, #ccc 100%);
	padding: 6px 0;
}

#aft-slogan {
	padding-left: 20px;
}

.input-group {
	display: flex;
	align-items: stretch;
}

.js-finder-search-query.form-control {
	width: 83%;
	height: 34px;
}

.form-control {
	padding-left: 10px;
	color: #495057;
	font-family: inherit;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #aeabab;
	border-radius: .25rem 0 0 .25rem;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.form-control:focus {
	color: #495057;
	background-color: #fff;
	border-color: #80bdff;
	outline: 0;
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,0.6);
}

.input-group .btn-primary,
.input-group .btn-primary:hover,
.input-group .btn-primary:focus,
.input-group .btn-primary:active {
	border: 1px solid #777 !important;
	background: #777 !important;
	font-size: 14px;
	color: #fff;
	height: 34px;
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	border-radius: 0 .25rem .25rem 0;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	padding: .15rem .75rem;
	margin-left: 1px;
	box-shadow: none !important;
	background-image: none !important;
	text-shadow: none;
	outline: none;
	appearance: none;
	cursor: pointer;
}

.input-group .btn-primary svg {
	stroke-width: 3;
}
