@charset "utf-8";
/* 
 ** 功能名称：公共样式表
 */

/* -----------------引入字体 css main ------------------ */
 
/* 在线链接服务仅供平台体验和调试使用，平台不承诺服务的稳定性，企业客户需下载字体包自行发布使用并做好备份。 */
@font-face {
	font-family: 'C_icon'; /* Project id 3008814 */
	src: url('//at.alicdn.com/t/c/font_3008814_twp4byivhw9.woff2?t=1716283654350') format('woff2'), url('//at.alicdn.com/t/c/font_3008814_twp4byivhw9.woff?t=1716283654350') format('woff'), url('//at.alicdn.com/t/c/font_3008814_twp4byivhw9.ttf?t=1716283654350') format('truetype');
}
.C__icon {
	font-family: "C_icon" !important;
	font-size: 16px;
	line-height: 1;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-align: center;
}

html, body {
	margin: 0px;
	padding: 0px;
	background: transparent;
	font-family: "微软雅黑", "黑体", "宋体", "Microsoft YaHei", "SimHei", "SimSun";
	box-sizing: border-box;
	background-color: #F4F4F8;
	width: 100%;
	height: 100%;
	/*-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;*/
	overflow-x: hidden;
}

body {
	--style: #E31111;
	--white: #ffffff;
	--black: #333333;
	--gray: #797979;
	--bg: #EEF2F9;
}
body{
	height: auto;
	min-height: 100%;
	background-color: var(--bg);
}
div {
	box-sizing: border-box;
}

/* 滚动条 */

::-webkit-scrollbar {
	width: 5px;
	height: 7px;
}

::-webkit-scrollbar-thumb {
	background-color: rgba(50, 50, 50, 0.3);
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background-color: rgba(50, 50, 50, 0.6);
	border-radius: 5px;
}

::-webkit-scrollbar-track {
	background-color: transparent;
}

::-webkit-scrollbar-track:hover {
	background-color: transparent;
}

ol, ul {
	list-style: none;
}

ul {
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
}

a {
	color: var(--black);
	text-decoration: none;
}

input {
	outline: none;
}

input::-webkit-input-placeholder {
	/* WebKit browsers */
	color: var(--gray);
}

input:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: var(--gray);
}

input::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: var(--gray);
}

input:-ms-input-placeholder {
	/* Internet Explorer 10+ */
	color: var(--gray);
}

a:hover, a:active {
	color: var(--style);
	text-decoration: none;
}

.onStatus:active {
	opacity: 0.9;
}
.clearfix:after, .clearfix:before {
    content: " ";
    /*加一段内容*/
    display: table;
    /*创建匿名的表格单元，触发bfc*/
}

.clearfix:after {
    clear: both;
    /*清除浮动*/
}

.clearfix {
    zoom: 1;
    /*为IE6，7的兼容性设置*/
}