* {
	padding: 0;
	margin: 0;
	letter-spacing: 0.5px;
	/* 字间距 */
	word-wrap: break-word;
	/* 内容长度超出将在边界内换行 */
	user-select: none;
	/* 禁止选中 */
	/* -webkit-user-drag: none; */
	/* 禁止拖拽 */
	resize: none !important;
}

::-webkit-scrollbar {
	height: 6px;
	width: 0;
	overflow-y: auto;
}
::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background: #939392;
}
::-webkit-scrollbar-track {
	-webkit-box-shadow: 0;
	border-radius: 0;
	background: #f0f2f5;
}

.navbar {
	color: #ffffffd9;
}

.navbar>div {
	flex: 1;
}

.navbar .menuList {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.navbar .menu {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 64px;
	font-size: 17px;
	padding: 0 25px;
	/* border: 1px #060606 solid; */
	cursor: pointer;
	position: relative;
	transition: all .5s ease-in-out;
}

.navbar .menu:hover {
	background: #0001;
}

.navbar .menu:hover:before {
	background-color: #fecd34;
	box-shadow: 0 2px 8px #fecd34aa;
}

.navbar .menu.active {
	background: #0001;
}

.navbar .menu.active:before {
	background-color: #fecd34;
	box-shadow: 0 2px 8px #fecd34aa;
}

.navbar .menu::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 2.5px;
	left: 0;
	bottom: 0;
	background-color: none;
	transition: all .2s ease-in-out;
	filter: blur(.2px);
}

.content {
	width: calc(100vw - 20px);
}

.card{
	width: 370px;
	border: 1px solid #f0f0f0;
	border-radius: 10px;
	margin: 0;
	margin-right: 10px;
    padding: 0;
    color: rgba(0, 0, 0, .85);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    font-feature-settings: "tnum";
    position: relative;
    background: #fff;
}

.card_title{
	overflow: hidden;
    color: #000000d9;
    font-weight: 500;
    font-size: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
	margin-bottom: 8px;
	text-align: center;
}

.card_body{
	color: #0000009d;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    font-feature-settings: "tnum";
	padding: 24px;
}

.content .services {
	display: flex;
	flex-direction: row;
	align-items: center;
	overflow: hidden;
}

.content .services>div {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #6d93ff33;
	border-radius: 15px;
	padding: 10px;
}

.content .services>div:not(:last-child) {
	margin-right: 10px;
}

.content .services>div>span {
	text-align: center;
	font-size: 17px;
	font-weight: bold;
}

.content .services>div>div {
	width: 150px;
	height: 150px;
	border-radius: 10px;
	margin-bottom: -20px;
	pointer-events: none;
}

.content .title {
	font-size: 35px;
	display: flex;
	align-items: center;
}

.content {
	padding: 0 10px;
	margin-top: 10px;
}

.content .title {
	margin-bottom: 10px;
}

.content .title:not(.justify-center) {
	position: relative;
}

.content .title:not(.justify-center)::before {
	content: '';
	display: block;
	width: 3.5px;
	height: 35px;
	margin-left: 2.5px;
	margin-right: 5px;
	background: #3c889e;
	/* v-bind('isDark ? "#3c889e" : "#3c889e"') */
	border-start-end-radius: 5px;
	border-end-end-radius: 5px;
}

.content .title:not(.justify-center)::after {
	content: '';
	display: block;
	position: absolute;
	width: 2.5px;
	height: 35px;
	left: 0;
	background: #f96;
	/* v-bind('isDark ? "#f96" : "#f96"') */
	border-start-start-radius: 5px;
	border-end-start-radius: 5px;
}

.footer{
	display: flex;
	justify-content: center;
	width: calc(100vw - 20px);
	padding: 10px;
	user-select: text;
}

.ba{
	cursor: pointer;
}
.ba:hover{
	text-decoration: underline;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	-webkit-transition-delay: 99999s;
	-webkit-transition: color 99999s ease-out, background-color 99999s ease-out;
}

._ {
	width: 100vw;
	height: 100vh;
	background-color: #f5f5f5;
}

.pointer-none {
	pointer-events: none;
}

.underline {
	text-decoration: underline;
}

.cursor-pointer {
	cursor: pointer;
}

.cursor-grabbing {
	cursor: grabbing;
}

.full-width {
	width: 100%;
	width: -webkit-fill-available;
}

.screen-width {
	width: 100vw;
}

.full-height {
	height: 100%;
	height: -webkit-fill-available;
}

.screen-height {
	height: 100vw;
}

a:link {
	color: #000000;
	text-decoration: none;
}

a:visited {
	color: #000000;
	text-decoration: none;
}

a:hover {
	color: #0000009d;
}

a:active {
	color: #000000;
	text-decoration: none;

}

.line-limit-length {
	/* 文字超出长度省略 */
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.flex {
	display: -webkit-flex;
	display: flex;
}

.flex-column {
	display: flex;
	flex-direction: column;
}

.flex-row {
	display: flex;
	flex-direction: row;
}

.flex-row-wrap {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.flex-row-reverse {
	display: flex;
	flex-direction: row-reverse;
}

.flex-wrap {
	display: flex;
	flex-wrap: wrap;
}

.align-flex-start {
	display: flex;
	align-items: flex-start;
}

.align-center {
	display: flex;
	align-items: center;
}

.align-flex-end {
	display: flex;
	align-items: flex-end;
}

.justify-center {
	display: flex;
	justify-content: center;
}

.justify-flex-start {
	display: flex;
	justify-content: flex-start;
}

.justify-flex-end {
	display: flex;
	justify-content: flex-end;
}

.space-between {
	display: flex;
	justify-content: space-between;
}

.space-around {
	display: flex;
	justify-content: space-around;
}

.space-evenly {
	display: flex;
	justify-content: space-evenly;
}

.flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}