/* 放在 CSS 文件最顶部 */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body,
html {
	height: auto;
	margin: 0;
	background: #ffffff !important;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #4d4d4d;
	font-size: 15px;
	user-select: none;
	-webkit-user-select: none;
	/*Safari*/
	-moz-user-select: none;
	/*Firefox*/
}

ul {
	list-style-type: none;
}

a {
	text-decoration: none;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	text-decoration: none;
}

.main-content .hr {
	margin: 10px 0 !important;
}

.first-bar {
	background: #fff;
	padding: 0 12px;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	width: 100%;
}

.second-bar {
	background: #fff;
	padding: 0;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	width: 100%;
	position: sticky;
	top: 0;
	z-index: 999;

}

.third-bar {
	background: #fff;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	width: 100%;
	position: sticky;
	top: 36px;
	z-index: 999;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
	padding: 4px 0px;
}

.first-bar {
	background: #fff url("../images/header_bg.png") repeat;
	justify-content: space-between;
	min-height: 44px;
}

.second-bar [class*="col-"] {
	border-bottom: 2px solid #D9D9D9;
	height: 36px;
}

.second-bar [class*="col-"].active {
	border-bottom: 2px solid #8978A7;
}

.second-bar [class*="col-"] img {
	filter: grayscale(1);
}

.second-bar [class*="col-"].active img {
	filter: grayscale(0);
}

.bar-menu {
	font-size: 10px;
	color: #888;
}

.full-container-1 {
	background-color: #ffffff;
	min-height: calc(100vh - 150px);
	display: flex;
	flex-direction: column;
}

.full-container-2 {
	background-color: #f4f4f4;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.main-content {
	padding: 8px 12px;
}