:root {
	--primary-color: #1194fd;
	--danger-color: #e63e3d;
	--info-color: #999;
	--warning-color: #f0b012;
	--blue-color: #0078d9;
	--pass-color: #29a76a;
}

.bg-color {
	background-color: var(--primary-color);
}

.fff-color {
	color: #fff;
}

.fff-bg {
	background-color: #fff;
}

.info-color {
	color: var(--info-color);
}

.info-bg {
	background-color: var(--info-color);
}

.warning-color {
	color: var(--warning-color);
}

.warning-bg {
	background-color: var(--warning-color);
}

.primary-color {
	color: var(--primary-color);
}

.primary-bg {
	background-color: var(--primary-color);
}

.danger-color {
	color: var(--danger-color);
}

.danger-bg {
	background-color: var(--danger-color);
}

.padding {
	padding: 40px 20px;
}

.box {
	width: 100%;
	padding: 37px 0;
}

.card {
	width: 90%;
	margin: 0 auto;
}

.flex {
	display: flex;
}

.flexWrap {
	flex-wrap: wrap;
}

.row-gap {
	display: flex;
	gap: 10px;
}

.row-gap5 {
	display: flex;
	gap: 5px;
}

.column-gap {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.column-gap5 {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.row-justify-center {
	justify-content: center;
}

.row-align-center {
	align-items: center;
}

.row-space-between {
	justify-content: space-between;
}

.row-space-around {
	justify-content: space-around;
}

.flex-column {
	display: flex;
	flex-direction: column;
}

.column-justify-center {
	justify-content: center;
}

.column-align-center {
	align-items: center;
}

.flex1 {
	flex: 1;
}

.radius5 {
	border-radius: 5px;
}

.radius10 {
	border-radius: 10px;
}

.arrow-right {
	position: relative;
}

.weight {
	font-weight: 700;
}

.omit1 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	line-clamp: 1;
	-webkit-line-clamp: 1;
}

.omit2 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	-webkit-line-clamp: 2;
}

.omit4 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	-webkit-line-clamp: 4;
}

.pointer {
	cursor: pointer;
}

.radius5 {
	border-radius: 5px;
}

.radius10 {
	border-radius: 10px;
}

/* 面包屑 */

.breadcrumb {
	padding-top: 20px;
	display: flex;
	font-size: 15px;
	padding-bottom: 20px;
}

.breadcrumb .image {
	width: 21px;
	height: 24px;
}

/* 搜索框 */

.search-box {
	padding: 0 20px;
	padding-bottom: 10px;
}

.search-box .menu {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 30px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 20px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
	width: 150px;
	background-color: #fff;
}

.search-box .menu-width {
	width: 400px;
	margin-right: 30px;
	margin-left: 30px;
}

.search-box .menu-width .search-icon .search {
	width: 20px;
	height: 20px;
	margin-right: 20px;
}

.search-box .menu-width .search-icon .input {
	font-size: 15px;
}

.search-box .menu-width .search-icon .input::placeholder {
	color: #999;
}

.search-box .menu .age .arrow {
	width: 10px;
}

.search-box .search-button {
	padding: 0 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background-image: linear-gradient(90deg, #0bdaf9 0%, #069ae6 39%, #005ad2 100%), linear-gradient(#005ad2, #005ad2);
	border-radius: 25px;
}

.search-box .select {
	position: relative;
}

.search-box .select .list {
	position: absolute;
	top: 46px;
	left: 2px;
	transition: max-height 0.25s ease-out;
	width: 98%;
	text-align: center;
	background-color: #fafbfc;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 20px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
	border-radius: 0 0 5px 5px;
}

.search-box .select .list .li {
	cursor: pointer;
	padding: 10px 20px;
	width: 100%;
}

.search-box .select .list .li:hover {
	background-color: #f5f5f5;
}

/* 分页 */

.page {
	margin-bottom: 10px;
}

.page .page-item {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	font-size: 15px;
}

.page .page-item .item {
	width: 88px;
	text-align: center;
	background-color: var(--blue-color);
	color: #fff;
	padding: 0 10px;
	line-height: 2.3;
}

.page .page-item .page-title {
	flex: 1;
	background-color: #eee;
	color: #555;
	padding: 0 10px;
	line-height: 2.3;
}

/* 分类 */

.card .category .category-item {
	padding: 8px 22px;
	border-radius: 20px;
	border: 1px solid var(--primary-color);
	margin-right: 20px;
	opacity: 0.8;
}

.card .category .active {
	background-color: var(--primary-color);
	color: #fff !important;
	opacity: 1;
}

@media screen and (max-width: 768px) {
	.box {
		padding: 15px 0;
	}
	.card {
		width: 93%;
	}
	body {
		font-size: 14px;
	}
}
