/* Main CSS Document */
@charset "utf8";
/* reset */
@font-face {
	font-family: "SourceSansPro-Bold";
	font-style: normal;
	font-display: swap;
	src: url(/static/fonts/SourceSansPro-Bold.0f05d84.otf);
}
@font-face {
	font-family: "SourceSansPro-Light";
	font-style: normal;
	font-display: swap;
	src: url(/static/fonts/SourceSansPro-Light.c3ebad2.otf);
}
:root {
	/*--font-family: "SourceSansPro-Light";*/
	--def-color: #333;
	--font-color: #3583BB;
	--color: #3583BB;
	--color1: #E9F1F7;
	--color2: #D6E5F0;
	--color3: #C1D9E9;
	--color4: #ADCCE3;
	--color5: #99C0DC;
	--color6: #85B4D5;
	--color7: #71A7CE;
	--color8: #5D9BC8;
	--color9: #4B8EC1;
	--bg-color: rgba(56, 130, 185, .7);
	--tw-ring-offset-shadow: 0 0 #0000;
	--tw-ring-shadow: 0 0 #0000;
	--tw-shadow: 0 0 #0000;
	--background-color: #FFF;
	--def-background-color: #F2F2F2;
	--hd-height: 110px;
}
@media (max-width: 990px) {
:root {
	--hd-height: 70px;
}
}
* {
	margin: 0;
	padding: 0;
}
::-webkit-scrollbar {
	height: 8px;
	width: 5px;
}
::-webkit-scrollbar-track-piece {
	background-color: transparent;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
::-webkit-scrollbar-thumb:vertical {
	background-color: var(--color);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	height: 8px;
}
::-webkit-scrollbar-thumb:horizontal {
	background-color: var(--color);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	width: 5px;
}
html, body {
	font-family: var(--font-family, -apple-system, BlinkMacSystemFont, Helvetica Neue, Helvetica, Arial, PingFang SC, Hiragino Sans GB, Microsoft YaHei, sans-serif) !important;
	font-size: 14px;
	line-height: 1.5;
	outline: 0;
	color: var(--def-color);
	background: var(--background-color);
}
html.bg-white, html.bg-white body {
	background: #FFF;
}
@media (-webkit-max-device-pixel-ratio: 1) {
body {
	font-family: var(--font-family, -apple-system, BlinkMacSystemFont, Helvetica Neue, Helvetica, Arial, PingFang SC, Hiragino Sans GB, Microsoft YaHei, sans-serif) !important;
}
}
html {
	font-size: min(-webkit-calc(max(100vw, 1600px) / 1600 * 75), 75px);
	font-size: min(calc(max(100vw, 1600px) / 1600 * 75), 75px);
}
@media (max-width: 990px) {
html {
	font-size: min(-webkit-calc(max(100vw, 750px) / 990 * 75), 75px);
	font-size: min(calc(max(100vw, 750px) / 990 * 75), 75px);
}
}
@media (max-width: 750px) {
html {
	font-size: min(-webkit-calc(max(100vw, 320px) / 750 * 75), 75px);
	font-size: min(calc(max(100vw, 320px) / 750 * 75), 75px);
}
}
.relative {
	position: relative;
}
.absolute {
	position: absolute;
}
.static {
	position: static;
}
.iconfont {
	font-size: inherit;
	text-rendering: auto;
}
a {
	color: #333;
}
a, a:link, a:visited, a:active, a:hover {
	text-decoration: none;
}
i, em {
	font-style: normal;
}
span, em, i, u {
	text-decoration: none;
}
ul, dl, li, dd, dt {
	list-style-type: none;
	list-style-image: none;
}
td, th, div {
/*	word-break: break-all;*/
	word-wrap: break-word;
}
h1, h2, h3, h4, h5 {
	font-size: inherit;
	font-weight: normal;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th {
	text-align: left;
	font-weight: normal;
}
fieldset, img {
	border: 0 none;
}
img {
	color: transparent;
	font-size: 0;
	vertical-align: top;
	/*
  For IE.
  http://css-tricks.com/ie-fix-bicubic-scaling-for-images
*/
	-ms-interpolation-mode: bicubic;
}
.img-hover, *[data-hover="*"] *[data-hover="img"] {
	-webkit-object-fit: cover;
	-moz-object-fit: cover;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-o-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
}
.img-hover:hover, *[data-hover="*"]:hover *[data-hover="img"] {
	-webkit-transform: scale(1.1) translateZ(0);
	-moz-transform: scale(1.1) translateZ(0);
	-o-transform: scale(1.1) translateZ(0);
	-ms-transform: scale(1.1) translateZ(0);
	transform: scale(1.1) translateZ(0);
}
.img-fit-cover {
	-webkit-object-fit: cover;
	-moz-object-fit: cover;
	-o-object-fit: cover;
	object-fit: cover;
}
.img-fit-contain {
	-webkit-object-fit: contain;
	-moz-object-fit: contain;
	-o-object-fit: contain;
	object-fit: contain;
}
.img-fit-scale-down {
	-webkit-object-fit: scale-down;
	-moz-object-fit: scale-down;
	-o-object-fit: scale-down;
	object-fit: scale-down;
}
.img-before {
	display: block;
	position: relative;
	overflow: hidden;
}
.img-before:before {
	content: " ";
	display: block;
}
.img-before img {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	position: absolute;
}
.shadow {
	--tw-shadow: 0 1px 3px 0 rgba(0,0,0,0.1),0 1px 2px 0 rgba(0,0,0,0.06);
}
.shadow,.shadow-2xl {
	-webkit-box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);
	box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);
}
.shadow-2xl {
	--tw-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.shadow-lg {
	--tw-shadow: 0 10px 15px -3px rgba(0,0,0,0.1),0 4px 6px -2px rgba(0,0,0,0.05);
}
.shadow-lg,.shadow-sm {
	-webkit-box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);
	box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);
}
.shadow-sm {
	--tw-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
}
.shadow-md {
	-webkit-box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);
	box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);
}
.shadow-md {
	--tw-shadow: 0 4px 6px -1px rgba(0,0,0,0.1),0 2px 4px -1px rgba(0,0,0,0.06);
}
.shadow-xl {
	--tw-shadow: 0 20px 25px -5px rgba(0,0,0,0.1),0 10px 10px -5px rgba(0,0,0,0.04);
}
.shadow-px,.shadow-px-100,.shadow-px-10,.shadow-xl {
	-webkit-box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);
	box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);
}
.shadow-px {
	--tw-shadow: 0 0 0 1px rgba(0,0,0,0.5);
}
.shadow-px-100 {
	--tw-shadow: 0 0 0 1px rgba(0,0,0,1);
}
.shadow-px-10 {
	--tw-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}
.shadow-none {
	--tw-shadow: 0 0 #0000;
}
*[data-hover="*"] {
	--transition-duration: 600ms;
	--border-margin: 30px;
	--border-width: 1px;
	--border-color: #FFF;
}
*[data-hover="*"] figure {
	left:0;
	top:0;
	width:100%;
	height:100%;
	display:block;
	position:absolute;
}
*[data-hover="*"] > figure:before, *[data-hover="*"] > figure:after, *[data-hover="*"] > figure > figure:before, *[data-hover="*"] > figure > figure:after {
	content:" ";
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 600ms ease;
	transition: all 600ms ease;
	-webkit-transition: all var(--transition-duration) ease;
	transition: all var(--transition-duration) ease;
	background:rgba(255,255,255,.5);
	position:absolute;
}
*[data-hover="*"] > figure:before, *[data-hover="*"] > figure > figure:after {
	-webkit-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
}
*[data-hover="*"] > figure:after, *[data-hover="*"] > figure > figure:before {
	-webkit-transform-origin: 100% 100%;
	-ms-transform-origin: 100% 100%;
	transform-origin: 100% 100%;
}
*[data-hover="*"] > figure:before, *[data-hover="*"] > figure:after {
	left:15px;
	left:var(--border-margin);
	right:15px;
	right:var(--border-margin);
	height: 3px;
	height: var(--border-width);
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
}
*[data-hover="*"] > figure:before {
	top: 15px;
	top: var(--border-margin);
}
*[data-hover="*"] > figure:after {
	bottom:15px;
	bottom:var(--border-margin);
}
*[data-hover="*"] > figure > figure:before, *[data-hover="*"] > figure > figure:after {
	top:15px;
	top:var(--border-margin);
	bottom:15px;
	bottom:var(--border-margin);
	width:3px;
	width: var(--border-width);
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
}
*[data-hover="*"] > figure > figure:before {
	left:15px;
	left:var(--border-margin);
}
*[data-hover="*"] > figure > figure:after {
	right:15px;
	right:var(--border-margin);
}
a:hover *[data-hover="*"] > figure:before, a:hover *[data-hover="*"] > figure:after, a:hover *[data-hover="*"] > figure > figure:before, a:hover *[data-hover="*"] > figure > figure:after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}
@media (max-width: 1560px) {
	*[data-hover="*"] {
		--border-margin: 15px;
		--border-width: 1px;
	}
}
.blur {
	filter: url(blur.svg#blur);
	/* FireFox, Chrome, Opera */
	-webkit-filter: blur(4px);
	/* Chrome, Opera */
	-moz-filter: blur(4px);
	-ms-filter: blur(4px);
	filter: blur(4px);
	filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius=4, MakeShadow=false);
	/* IE6~IE9 */
}
input, select, textarea, button {
	outline: 0 none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	/*resize: vertical;*/
	resize: none;
	font: 14px/1.5 -apple-system, BlinkMacSystemFont, Helvetica Neue, Helvetica, Arial, PingFang SC, Hiragino Sans GB, Microsoft YaHei, sans-serif;
}
button, input[type=button], input[type=submit] {
	cursor: pointer;
}
input[type=search] {
	-webkit-appearance: textfield;
}
input:-webkit-autofill {
 -webkit-box-shadow: 0 0 0px 1000px white inset;
}
textarea {
	overflow-y: auto;
}
.sinput select, .sinput textarea, .sinput input[type="text"], .sinput input[type="password"], .sinput input[type="datetime"], .sinput input[type="datetime-local"], .sinput input[type="date"], .sinput input[type="month"], .sinput input[type="time"], .sinput input[type="week"], .sinput input[type="number"], .sinput input[type="email"], .sinput input[type="url"], .sinput input[type="search"], .sinput input[type="tel"], .sinput input[type="color"] {
	display: inline-block;
	line-height: 16px;
	padding: 2px 5px;
	font-size: 12px;
	color: #555;
}
.sinput input[type="text"], .sinput input[type="password"] {
	height: 16px;
}
.sinput input[type="checkbox"] {
	margin: 3px 6px 3px 4px;
	-webkit-appearance: checkbox;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.sinput input[type="radio"] {
	margin: 3px 6px 3px 4px;
	-webkit-appearance: radio;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.sinput textarea, .sinput select, .sinput input[type="text"], .sinput input[type="password"], .sinput input[type="datetime"], .sinput input[type="datetime-local"], .sinput input[type="date"], .sinput input[type="month"], .sinput input[type="time"], .sinput input[type="week"], .sinput input[type="number"], .sinput input[type="email"], .sinput input[type="url"], .sinput input[type="search"], .sinput input[type="tel"], .sinput input[type="color"] {
	background-color: #ffffff;
	border: 1px solid #cccccc;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
	-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
	-ms-transition: border linear 0.2s, box-shadow linear 0.2s;
	-o-transition: border linear 0.2s, box-shadow linear 0.2s;
	-webkit-transition: border linear 0.2s, -webkit-box-shadow linear 0.2s;
	transition: border linear 0.2s, -webkit-box-shadow linear 0.2s;
	transition: border linear 0.2s, box-shadow linear 0.2s;
	transition: border linear 0.2s, box-shadow linear 0.2s, -webkit-box-shadow linear 0.2s;
}
.sinput textarea:focus, .sinput input[type="text"]:focus, .sinput input[type="password"]:focus, .sinput input[type="datetime"]:focus, .sinput input[type="datetime-local"]:focus, .sinput input[type="date"]:focus, .sinput input[type="month"]:focus, .sinput input[type="time"]:focus, .sinput input[type="week"]:focus, .sinput input[type="number"]:focus, .sinput input[type="email"]:focus, .sinput input[type="url"]:focus, .sinput input[type="search"]:focus, .sinput input[type="tel"]:focus, .sinput input[type="color"]:focus {
	border-color: rgba(82, 168, 236, 0.8);
	outline: 0;
	outline: thin dotted \9;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
	-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
}
.none {
	display: none !important;
}
/*下拉二级菜单样式*/
.combobox, .selbox {
	display: block;
	position: relative;
}
.combobox .comcon, .selbox .selcon {
	display: none;/*position:absolute;*/
}
.combobox .hover, .selbox .hover {
/*这里可以稍稍做点修改 通常在单样式里做特效修改*/
}
/*清楚浮动*/
.clearfix {
	*zoom:1;
}
.clearfix:after, .clearfix:before {
	display: table;
	content: " ";
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.clearfix:after {
	clear: both;
}
/*窗体大小*/
.w-mauto {
	margin: 0 auto;
	max-width: 1630px;
	width: 90%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.w-mauto[data-width="max"] {
	max-width: 90vw;
}
.w-mauto[data-width="def"] {
	max-width: 1200px;
}
.w-mauto[data-width="min"] {
	max-width: 960px;
}
@media (max-width: 990px) {
.w-mauto {
	padding: 0 0.4rem;
	max-width: unset;
	width: 100%;
}
}
.flex {
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
}
.l {
	float: left;
}
.r {
	float: right;
}
.scrollbar {
	overflow-y: auto;
	word-wrap: break-word;
	word-break: normal
}
.scrollbar::-webkit-scrollbar {
	width: 6px
}
.scrollbar::-webkit-scrollbar-track {
	background: #eee
}
.scrollbar::-webkit-scrollbar-thumb {
	background: #d9d9d9
}
*[data-trans="t"] {
	-ms-transform: translateY(100px);
	transform: translateY(100px);
	-webkit-transform: translateY(100px);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity .5s cubic-bezier(0.445, 0.145, 0.355, 1), -webkit-transform 600ms;
	transition: opacity .5s cubic-bezier(0.445, 0.145, 0.355, 1), -webkit-transform 600ms;
	transition: transform 600ms, opacity .5s cubic-bezier(0.445, 0.145, 0.355, 1);
	transition: transform 600ms, opacity .5s cubic-bezier(0.445, 0.145, 0.355, 1), -webkit-transform 600ms;
	-webkit-transition: transform 600ms, opacity .5s cubic-bezier(0.445, 0.145, 0.355, 1);
	transition-timing-function: ease-out;
	-webkit-transition-timing-function: ease-out;
}
*[data-trans="b"] {
	-ms-transform: translateY(-100px);
	transform: translateY(-100px);
	-webkit-transform: translateY(-100px);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity .5s cubic-bezier(0.445, 0.145, 0.355, 1), -webkit-transform 600ms;
	transition: opacity .5s cubic-bezier(0.445, 0.145, 0.355, 1), -webkit-transform 600ms;
	transition: transform 600ms, opacity .5s cubic-bezier(0.445, 0.145, 0.355, 1);
	transition: transform 600ms, opacity .5s cubic-bezier(0.445, 0.145, 0.355, 1), -webkit-transform 600ms;
	-webkit-transition: transform 600ms, opacity .5s cubic-bezier(0.445, 0.145, 0.355, 1);
	transition-timing-function: ease-out;
	-webkit-transition-timing-function: ease-out;
}
*[data-trans="l"] {
	-ms-transform: translateX(100px);
	transform: translateX(100px);
	-webkit-transform: translateX(100px);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity .5s cubic-bezier(0.445, 0.145, 0.355, 1), -webkit-transform 600ms;
	transition: opacity .5s cubic-bezier(0.445, 0.145, 0.355, 1), -webkit-transform 600ms;
	transition: transform 600ms, opacity .5s cubic-bezier(0.445, 0.145, 0.355, 1);
	transition: transform 600ms, opacity .5s cubic-bezier(0.445, 0.145, 0.355, 1), -webkit-transform 600ms;
	-webkit-transition: transform 600ms, opacity .5s cubic-bezier(0.445, 0.145, 0.355, 1);
	transition-timing-function: ease-out;
	-webkit-transition-timing-function: ease-out;
}
*[data-trans="r"] {
	-ms-transform: translateX(-100px);
	transform: translateX(-100px);
	-webkit-transform: translateX(-100px);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity .5s cubic-bezier(0.445, 0.145, 0.355, 1), -webkit-transform 600ms;
	transition: opacity .5s cubic-bezier(0.445, 0.145, 0.355, 1), -webkit-transform 600ms;
	transition: transform 600ms, opacity .5s cubic-bezier(0.445, 0.145, 0.355, 1);
	transition: transform 600ms, opacity .5s cubic-bezier(0.445, 0.145, 0.355, 1), -webkit-transform 600ms;
	-webkit-transition: transform 600ms, opacity .5s cubic-bezier(0.445, 0.145, 0.355, 1);
	transition-timing-function: ease-out;
	-webkit-transition-timing-function: ease-out;
}
*[data-trans="t"].action, *[data-trans="b"].action {
	opacity: 1;
	visibility: visible;
	-ms-transform: translateY(0px);
	transform: translateY(0px);
	-webkit-transform: translateY(0px);
}
*[data-trans="l"].action, *[data-trans="r"].action {
	opacity: 1;
	visibility: visible;
	-ms-transform: translateY(0px);
	transform: translateY(0px);
	-webkit-transform: translateY(0px);
}
/*让position:fixed在IE6下可用! 兼容全能代码，勿删除*/
.fixed-top /* 头部固定 */ {
	position: fixed;
	bottom: auto;
	top: 0px;
	-webkit-transform: translateZ(0);
}
.fixed-bottom /* 底部固定 */ {
	position: fixed;
	bottom: 0px;
	top: auto;
}
.fixed-left /* 左侧固定 */ {
	position: fixed;
	right: auto;
	left: 0px;
}
.fixed-right /* 右侧固定 */ {
	position: fixed;
	right: 0px;
	left: auto;
}
/* 上面的是除了IE6的主流浏览器通用的方法 */
* html, * html body /* 修正IE6振动bug */ {
	background-image: url(about:blank);
	background-attachment: fixed;
}
* html .fixed-top /* IE6 头部固定 */ {
	position: absolute;
	bottom: auto;
	_top:expression(eval(document.documentElement.scrollTop));
}
* html .fixed-right /* IE6 右侧固定 */ {
	position: absolute;
	right: auto;
	_left:expression(eval(document.documentElement.scrollLeft+document.documentElement.clientWidth-this.offsetWidth)-(parseInt(this.currentStyle.marginLeft, 10)||0)-(parseInt(this.currentStyle.marginRight, 10)||0));
}
* html .fixed-bottom /* IE6 底部固定  */ {
	position: absolute;
	bottom: auto;
 _top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop, 10)||0)-(parseInt(this.currentStyle.marginBottom, 10)||0)));
}
* html .fixed-left /* IE6 左侧固定 */ {
	position: absolute;
	right: auto;
	_left:expression(eval(document.documentElement.scrollLeft));
}
/* 弹出窗口 */
.modal_backdrop {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000;
	filter: alpha(opacity=40);
	-moz-opacity: 0.4;
	-khtml-opacity: 0.4;
	opacity: 0.4;
	position: absolute;
}
.modal_backdrop-black {
	background: #000;
}
.modal_backdrop-write {
	background: #FFF;
}
.modal_backdrop-transparent {
	background: transparent;
}
.modal_tbox {
	left: 0;
	top: 0;
	min-width: 1200px;
	width: 100%;
	height: 100%;
	display: none;
	position: fixed;
	z-index: 100002;
}
.modal-slide-entering {
	-webkit-animation: slideDownIn 0.3s both;
	animation: slideDownIn 0.3s both
}
@-webkit-keyframes slideDownIn {
	from {
		-webkit-transform: translate3d(0px, 15px, 0px);
		transform: translate3d(0px, 15px, 0px);
/*		opacity: 0*/
	}
	to {
		-webkit-transform: translate3d(0px, 0px, 0px);
		transform: translate3d(0px, 0px, 0px);
/*		opacity: 1*/
	}
}
@keyframes slideDownIn {
	from {
		-webkit-transform: translate3d(0px, 15px, 0px);
		transform: translate3d(0px, 15px, 0px);
/*		opacity: 0*/
	}
	to {
		-webkit-transform: translate3d(0px, 0px, 0px);
		transform: translate3d(0px, 0px, 0px);
/*		opacity: 1*/
	}
}
.modal-slide-exiting {
	-webkit-animation: slideDownOut 0.3s both;
	animation: slideDownOut 0.3s both
}
@-webkit-keyframes slideDownOut {
	from {
		-webkit-transform: translate3d(0px, 0px, 0px);
		transform: translate3d(0px, 0px, 0px);
/*		opacity: 1*/
	}
	to {
		-webkit-transform: translate3d(0px, 15px, 0px);
		transform: translate3d(0px, 15px, 0px);
/*		opacity: 0*/
	}
}
@keyframes slideDownOut {
	from {
		-webkit-transform: translate3d(0px, 0px, 0px);
		transform: translate3d(0px, 0px, 0px);
/*		opacity: 1*/
	}
	to {
		-webkit-transform: translate3d(0px, 15px, 0px);
		transform: translate3d(0px, 15px, 0px);
/*		opacity: 0*/
	}
}
.modal_tbox.offset_0 {
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-ms-flex-align: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.modal_tbox.offset_1 {
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.modal_tbox.offset_2 {
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-align: end;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}
.modal_tbox.offset_3 {
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-ms-flex-align: end;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}
.modal_tbox.offset_4 {
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: end;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	-ms-flex-align: end;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}
.modal_tbox.offset_5 {
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-ms-flex-pack: end;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
.modal_tbox.offset_6 {
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: end;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	-ms-flex-align: start;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}
.modal_tbox.offset_7 {
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-ms-flex-align: start;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}
.modal_tbox.offset_8 {
	display: block;
}
.modal_tbox .tconbox {
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
	-moz-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
	box-shadow: 0 3px 7px rgba(0,0,0,0.3);
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding-box;
	background-clip: padding-box;
	position: relative;
	z-index: 1;
}
.modal_tbox .tconbox .tcon-close {
	right: 45px;
	top: 45px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	position: absolute;
	z-index: 1;
}
.modal_tbox .tconbox .tcon-close svg {
	width: 100%;
	height: 100%;
}
.modal_tbox .tconbox .tcon-close:hover {
	color: #FF7200;;
}
.modal_tbox .tconbox .tcon-til {
	padding: 20px 45px 0;
	line-height: 80px;
	font-size: 24px;
	font-weight: bold;
	color: #F60;
}
.modal_tbox .tconbox .tcon-con {
	padding: 0 45px;
}
/* 加载处理窗口 */
.modalbg_loading-box {
	z-index: 100003;
}
.modal_loading-box {
	z-index: 100004;
}
.modal_tbox .loading-box {
	width: 64px;
	height: 20px;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.modal_tbox .loading-box .ball-beat > div {
	background-color: rgba(0,0,0,.5);
}
.modal_tbox .loading-box .msg {
	line-height: 60px;
	font-size: 16px;
	text-align: center;
	color: #FFF;
}
/* 分页样式 */
.mpage_boxs {
}
.mpage_boxs ul {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.mpage_boxs li {
	font-size: 18px;
	text-align: center;
}
.mpage_boxs a, .mpage_boxs span {
	min-width: 42px;
	line-height: 42px;
	text-decoration: none;
	display: block;
	overflow: hidden;
}
.mpage_boxs a {
	cursor: pointer;
}
.mpage_boxs span {
	color: #999;
}
.mpage_boxs i {
	text-align: center;
	display: block;
}
.mpage_boxs .prev {
	font-size: 14px;
}
.mpage_boxs .prev [href="javascript:;"] {
	color: #CCC;
}
.mpage_boxs .next {
	font-size: 14px;
}
.mpage_boxs .next [href="javascript:;"] {
	color: #CCC;
}
.mpage_boxs .cur a {
	color: var(--color);
}
/* 头部 */
.hd-boxs {
	left: 0;
	top: 0;
	width: 100%;
	-webkit-box-shadow: 0 0 10px rgba(50, 50, 50, 0.1);
    -moz-box-shadow: 0 0 10px rgba(50, 50, 50, 0.1);
    box-shadow: 0 0 10px rgba(50, 50, 50, 0.1);
	background: transparent;
	position: absolute;
	z-index: 11;
}
.hd-header {
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .6)), to(transparent));
	background: linear-gradient(rgba(0, 0, 0, .6), transparent);
	position: relative;
}
.hd-header:before {
	content: " ";
	left: 0;
	bottom: 0;
	width: 100%;
	opacity: .2;
	border-bottom: 1px solid #FFF;
	position: absolute;
}
.hd-content {
	height: var(--hd-height);
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.hd-logo {
	display: block;
}
.hd-logo img {
}
.hd-logo img:first-child {
}
.hd-logo img:last-child {
	display: none;
}
.hd-mnav {
}
.hd-mnav a {
	display: block;
	color: #FFF;
}
.hd-mnav .l-ul {
	margin: 0 -25px;
}
.hd-mnav .l-li {
	padding: 0 25px;
	display: inline-block;
	float: left;
}
.hd-mnav .l-li a {
	white-space: nowrap;
	color: #FFF;
}
.hd-mnav .l-more {
	display: none;
}
.hd-mnav .l-til {
	padding: 0 20px;
	line-height: 50px;
	font-size: 20px;
	display: block;
	position: relative;
}
.hd-mnav .l-til:before {
	content: " ";
	left: 0;
	right: 0;
	bottom: -30px;
	border-bottom: 2px solid #FFF;
	display: none;
	background: #FFF;
	position: absolute;
}
.hd-mnav .l-li.active .l-til {
	font-weight: bold;
}
.hd-mnav .l-li.active .l-til:before/*, .hd-mnav .l-til:hover:before*/ {
	display: block;
}
.hd-mnav .l-box {
	margin-left: 50%;
	left: 0;
	top: 100%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	position: absolute;
}
.hd-mnav .l-con {
	padding: 5px 0;
	background: rgba(0, 0, 0, .5);
}
.hd-mnav .l-box ul {
}
.hd-mnav .l-box ul li {
}
.hd-mnav .l-box ul li a {
	padding: 0 25px;
	line-height: 50px;
	font-size: 16px;
	text-align: center;
}
@media (max-width: 1460px) {
.hd-content {
	height: var(--hd-height);
}
.hd-logo {
	height: 60px;
}
.hd-logo img {
	width: auto;
	height: 100%;
}
.hd-mnav .l-ul {
	margin: 0 -15px;
}
.hd-mnav .l-li {
	padding: 0 15px;
	display: inline-block;
	float: left;
}
.hd-mnav .l-til {
	font-size: 18px;
}
}
@media (max-width: 990px) {
.hd-mnav .l-ul {
	margin: 0;
}
.hd-mnav .l-li {
	padding: 0;
}
.hd-mnav .l-til {
	padding: 0 18px;
	font-size: 16px;
}
.hd-mnav .l-til:before {
	left: 18px;
	right: 18px;
	bottom: -10px;
}
}
@media (max-width: 750px) {
.hd-mnav {
	display: none;
}
}
/* 移动菜单按钮 */
.hd-menu {
	right: 30px;
	top: 20px;
	display: none;
	position: absolute;
	z-index: 2;
}
.hd-menu .l-ul {
}
.hd-menu .l-li {
}
.hd-menu .l-li a {
	width: 30px;
	height: 30px;
	display: block;
	position: relative;
	overflow: hidden;
}
.hd-menu .l-li span {
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	height: 0.06rem;
	width: 100%;
	transition: all .3s;
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	background: rgba(255, 255, 255, 1.0);
	position: absolute;
	overflow: hidden;
}
.hd-menu .l-li .s-1 {
	margin-top: -10px;
}
.hd-menu .l-li .s-2 {
}
.hd-menu .l-li .s-3 {
	margin-top: 10px;
}
/* 子菜单 */
.hd-sbox {
	display: none;
}
.hd-sbox .c-search {
	margin: 0 auto;
	padding: 15px 0;
	width: 80%;
}
.hd-sbox .c-search form {
	position: relative;
}
.hd-sbox .c-search input[type="text"] {
	padding: 0 60px 0 20px;
	width: 100%;
	height: 40px;
	border: 1px solid #DDD;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
	outline: 0 none;
}
.hd-sbox .c-search input[type="submit"] {
	right: 0;
	top: 0;
	width: 60px;
	height: 40px;
	border: 0 none;
	color: #FFF;
	background: transparent;
	position: absolute;
}
.hd-sbox .c-search i {
	right: 0;
	top: 0;
	width: 60px;
	line-height: 40px;
	text-align: center;
	background: transparent;
	position: absolute;
}
.hd-sbox .c-mnav {
	padding: 0 20px 60px;
}
.hd-sbox .c-mnav ul {
}
.hd-sbox .c-mnav ul li {
	border-bottom: 1px solid #DDD;
}
.hd-sbox .c-mnav ul li:first-child {
	border-top: 1px solid #DDD;
}
.hd-sbox .c-mnav ul li a {
	line-height: 42px;
	display: block;
}
.hd-sbox .c-mnav .l-ul {
}
.hd-sbox .c-mnav .l-li {
	position: relative;
}
.hd-sbox .c-mnav .l-til {
}
.hd-sbox .c-mnav .l-li.active .l-til {
	color: var(--color);
}
.hd-sbox .c-mnav .l-more {
	right: 0;
	top: 0;
	width: 42px;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	color: #999;
	position: absolute;
	overflow: hidden;
}
.hd-sbox .c-mnav .l-more:before {
	content: " ";
	left: 0;
	top: 10px;
	bottom: 10px;
	border-left: 1px solid #DDD;
	display: block;
	position: absolute;
}
.hd-sbox .c-mnav .l-more i {
	transition: all .3s;
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	display: block;
}
.hd-sbox .c-mnav .l-li.on .l-more i {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}
.hd-sbox .c-mnav .l-con {
	margin-left: 20px;
	display: none;
}
.hd-sbox .c-mnav .l-con a {
	color: #999;
}
.hd-sbox .c-mnav .l-con ul {
}
.hd-sbox .c-mnav .l-con ul li:last-child {
	border-bottom: none;
}
.hd-sbox .c-mnav .l-con ul li.active a {
	color: var(--def-color);
}
@media (max-width: 750px) {
.hd-on {
	position: fixed;
}
.hd-on .hd-header {
	background: #FFF;
}
.hd-on .hd-logo img:first-child {
	display: none;
}
.hd-on .hd-logo img:last-child {
	display: block;
}
.hd-on .hd-menu .l-li span {
	background: var(--color);
}
.hd-menu {
	display: block;
}
}
@media (max-width: 990px) {
.hd-boxs.on {
	height: 100vh;
	height: 100dh;
	background: #FFF;
	position: fixed;
}
.hd-boxs.on .hd-header {
	background: transparent;
}
.hd-boxs.on .hd-header:before {
	display: none;
}
.hd-boxs.on .hd-logo img:first-child {
	display: none;
}
.hd-boxs.on .hd-logo img:last-child {
	display: block;
}
.hd-boxs.on .hd-menu {
}
.hd-boxs.on .hd-menu .l-li span {
	background: var(--color);
}
.hd-boxs.on .hd-menu .l-li .s-1 {
	margin-top: 0;
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	-ms-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
}
.hd-boxs.on .hd-menu .l-li .s-2 {
	width: 0;
}
.hd-boxs.on .hd-menu .l-li .s-3 {
	margin-top: 0;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	-ms-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
}
.hd-boxs.on .hd-sbox {
	height: -webkit-calc(100vh - 81px);
	height: calc(100vh - 81px);
	display: block;
	overflow: auto;
}
}
/* 中部 */
.bd-boxs {
}
/* 底部 */
.ft-boxs {
	font-size: 18px;
	color: #BBB;
	background: #34393D;
	overflow: hidden;
}
.ft-boxs a {
	color: #BBB;
}
.ft-boxs a:hover {
	color: #FFF;
}
.ft-con {
	padding: 60px 0 100px;
}
.ft-con .d-dl {
	margin: 0 -15px;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.ft-con .d-dd {
	padding: 0 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.ft-con .d-til {
	line-height: 22px;
	font-size: 22px;
	color: #EEE;
}
.ft-con .d-con {
}
.ft-con .d-d1 {
}
.ft-con .d-d1 .d-con {
}
.ft-con .d-d1 .d-con .con {
	margin-top: 20px;
	line-height: 32px;
}
.ft-con .d-d2 {
}
.ft-con .d-d2 .d-con {
	padding-top: 10px;
}
.ft-con .d-d2 .d-con ul {
	margin: 0 -5px;
}
.ft-con .d-d2 .d-con ul li {
	padding: 0 5px;
	width: 50%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	float: left;
}
.ft-con .d-d2 .d-con ul li a {
	line-height: 34px;
	display: block;
}
.ft-con .d-d2.on .d-con ul li {
	width: 100%;
}
.ft-con .d-d3 {
}
.ft-con .d-d3 .d-con {
	padding-top: 20px;
}
@media (max-width: 990px) {
.ft-con {
	padding: 0.7rem 0 1.0rem;
}
.ft-con .d-dl {
	margin-top: -0.68rem;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.ft-con .d-dd {
	margin-top: 0.68rem;
}
.ft-con .d-d1 {
	width: 100%;
}
}
@media (max-width: 750px) {
.ft-boxs {
	font-size: 14px;
}
.ft-con .d-til {
    line-height: 18px;
    font-size: 18px;
}
.ft-con .d-d1, .ft-con .d-d3 {
	width: 100%;
}
.ft-con .d-d1 .d-con .con {
	margin-top: 5px;
}
.ft-con .d-d2 {
	width: 50%;
}
.ft-con .d-d2 .d-con ul li {
	width: 100%;
}
.ft-con .d-d2 .d-con ul li a {
	line-height: 28px;
}
.ft-con .d-d3 {
	width: 100%;
}
}
/* 版权 */
.ft-copyright {
	border-top: 1px solid #333;
	padding: 20px 0;
	line-height: 30px;
	position: relative;
}
.ft-copyright:before {
	content: " ";
	left: 0;
	top: 0;
	width: 100%;
	border-top: 1px solid #666;
	display: block;
	position: absolute;
}
.ft-copyright span {
	margin-right: 10px;
}
@media (max-width: 750px) {
.ft-copyright {
	padding: 15px 0;
	line-height: 24px;
}
}
/* 当前位置 */
.bd-position {
	line-height: 36px;
}
.bd-position span:first-child {
	padding-left: 24px;
	position: relative;
}
.bd-position i {
	left: 0;
	top: 0;
	width: 24px;
	text-align: center;
	display: block;
	position: absolute;
}
.bd-position em {
	margin: 0 5px;
}
.bd-position a {
	display: block;
	color: #666;
}
.bd-position span {
	display: block;
	color: #666;
}
.bd-position a:hover {
	color: var(--color);
}
@media (max-width: 990px) {
.bd-position {
	display: none;
}
}
/* 公共样式 */
.bd-mbox {
	position:relative;
	overflow: hidden;
}
.bd-mbox .bm-til {
	padding: 90px 0 30px;
}
.bd-mbox .bm-til .c-til {
	padding-left: 50px;
	height: 50px;
	color: var(--color);
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
	position: relative;
}
.bd-mbox .bm-til .c-til .icon {
	left: 0;
	top: 0;
	width: 30px;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
	position: absolute;
}
.bd-mbox .bm-til .c-til .icon span {
	width: 6px;
}
.bd-mbox .bm-til .c-til .icon .s1 {
	height: 50px;
	background: var(--color);
}
.bd-mbox .bm-til .c-til .icon .s2 {
	margin: 0 6px;
	height: 40px;
	background: var(--color8);
}
.bd-mbox .bm-til .c-til .icon .s3 {
	height: 30px;
	background: var(--color6);
}
.bd-mbox .bm-til .c-til .til {
	line-height: 26px;
	font-size: 22px;
	font-weight: bold;
}
.bd-mbox .bm-til .c-til .til b {
	line-height: 36px;
	font-size: 36px;
}
.bd-m-txt * {
	line-height: 42px !important;
	font-size: 16px !important;
	text-wrap: unset !important;
}
.bd-m-txt img {
	/*margin: 0.2rem 0 !important;*/
	padding: 0 !important;
	width: auto !important;
	max-width: 100%;
	height: auto !important;
}
@media (max-width: 990px) {
.bd-mbox .bm-til {
	padding: 0.8rem 0 0.4rem;
}
.bd-mbox .bm-til .c-til {
	padding-left: 40px;
	height: 40px;
}
.bd-mbox .bm-til .c-til .icon {
	width: 25px;
}
.bd-mbox .bm-til .c-til .icon span {
	width: 5px;
}
.bd-mbox .bm-til .c-til .icon .s1 {
	height: 40px;
}
.bd-mbox .bm-til .c-til .icon .s2 {
	margin: 0 5px;
	height: 30px;
}
.bd-mbox .bm-til .c-til .icon .s3 {
	height: 20px;
}
.bd-mbox .bm-til .c-til .til, .bd-mbox .bm-til .c-til .til b {
	line-height: 20px;
	font-size: 20px;
}
.bd-m-txt * {
	line-height: 32px !important;
	font-size: 14px !important;
}
}
/* 自适应 */
.row {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.row:after, .row:before {
	display: table;
	content: " ";
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.row:after {
	clear: both;
}