/* 超宽屏幕导航布局优化 (width > 2215px) */
@media (min-width:2216px) {
	/* 头部容器 */
    .header-condition {
	display:flex;
	/* 使用flex布局 */
        align-items:center;
	/* 垂直居中对齐 */
        padding:0 50px;
	/* 左右边距 */
}
/* Logo区域 */
    .header-logo {
	width:280px;
	/* 固定logo宽度 */
        flex-shrink:0;
	/* 不允许收缩 */
}
/* 导航容器 */
    nav {
	margin:0 0 0 40px;
	/* 左侧间距 */
        flex:1;
	/* 占据剩余空间 */
        max-width:calc(100% - 600px);
	/* 最大宽度限制 */
        display:flex;
	/* 使用flex布局 */
        justify-content:center;
	/* 水平居中 */
}
/* 导航项 */
    nav > ul {
	display:flex;
	flex-wrap:nowrap;
	/* 强制不换行 */
        justify-content:space-between;
	/* 均匀分布 */
        width:100%;
}
nav > ul > li {
	margin:0 12px;
	/* 基础间距 */
        flex-shrink:0;
	/* 不允许收缩 */
}
/* 动态调整导航项间距 */
    @media (min-width:2560px) {
	nav > ul > li {
	margin:0 18px;
}
}@media (min-width:3000px) {
	nav > ul > li {
	margin:0 24px;
}
}/* 导航文字样式 */
    .nav_yj {
	white-space:nowrap;
	/* 强制不换行 */
        font-size:16px;
	/* 基础字体大小 */
        letter-spacing:0.5px;
	/* 字间距 */
}
/* 动态调整字体大小 */
    @media (min-width:2560px) {
	.nav_yj {
	font-size:17px;
}
}@media (min-width:3000px) {
	.nav_yj {
	font-size:18px;
}
}/* 右侧交互区域 */
    .header-inter {
	margin-left:40px;
	/* 左侧间距 */
        display:flex;
	align-items:center;
	flex-shrink:0;
	/* 不允许收缩 */
        z-index:20;
	/* 确保在导航上方 */
}
/* 搜索按钮 */
    .header-search {
	margin-left:10px;
}
/* 语言选择器 */
    .header-language {
	margin-left:10px;
}
/* 会员按钮 */
    .header-member {
	margin-left:10px;
}
/* 登录按钮 */
    .header-login {
	margin-left:10px;
}
/* 下拉菜单 */
    .language-list,.header-member > ul {
	right:0;
	top:100%;
	z-index:30;
	/* 更高层级 */
}
/* 搜索框 */
    .head .form {
	right:0;
	z-index:40;
	/* 最高层级 */
}
}/* 超宽屏幕（>2215px）隐藏指定元素 */
@media (min-width:2216px) {
	#c_static_001-1730701795421 .souBUt,#c_static_001-1730701795421 .yuList {
	display:block !important;
	/* 强制隐藏元素 */
}
/* 调整导航容器宽度，填补隐藏元素后的空间 */
    #c_static_001-1730701795421 .topNav > ul {
	width:90%;
	display:flex;
	justify-content:space-between;
	max-width:1270px;
	margin-left:auto;
}
}/* 分页样式  */
.page-nav {
	display:flex;
	justify-content:center;
	align-items:center;
	flex-wrap:wrap;
	margin:20px auto;
	padding:0;
	list-style:none;
	/* 清除默认列表样式 */
}
/* 分页总数文字样式 */
.page-nav span {
	margin-right:20px;
	color:#333;
}
/* 分页项容器样式 */
.page-nav li {
	margin:0 3px;
	/* 调整间距 */
}
/* 分页链接通用样式 */
.page-nav a {
	display:inline-block;
	padding:6px 12px;
	background-color:#fff;
	border:1px solid #ddd;
	color:#333;
	text-decoration:none;
	border-radius:3px;
	transition:all 0.3s ease;
}
/* 当前页样式（关键修改） */
.page-nav li.active > a {
	background-color:#93b3fc;
	color:#fff;
	border-color:#93b3fc;
	font-weight:bold;
	cursor:default;
	pointer-events:none;
	/* 禁止点击 */
}
/* 鼠标悬停效果 */
.page-nav a:hover:not(.active) {
	border-color:#93b3fc;
	color:#93b3fc;
}
/* 响应式调整 */
@media (max-width:768px) {
	.page-nav a {
	padding:4px 8px;
	margin-right:3px;
}
}.text-center {
	text-align:center;
}
.pagination {
	list-style:none;
	margin:0;
	padding:0;
	display:inline-block;
	vertical-align:bottom
}
.pagination li {
	display:inline-block!important;
	border:solid 1px #EBEBEB;
	border-radius:4px
}
.pagination a {
	color:#333;
	padding:8px 12px;
	line-height:18px;
	display:block;
	transition:all 1s cubic-bezier(0.175,0.885,0.32,1) 0s
}
.pagination .disabled a:link,.pagination .disabled a:visited,.pagination .disabled a:hover {
	cursor:not-allowed;
	pointer-events:none;
	color:#fff
}
.pagination .active {
	pointer-events:none;
	background:#93b3fc;
	color:#fff;
}
.pagination .active,.pagination a:hover {
	background:#93b3fc;
	color:#fff;
}
.pagination-group {
	border-right:solid 1px #EBEBEB;
	border-radius:4px
}
.pagination-group li {
	float:left;
	border-right:0;
	border-radius:0
}
.pagination-group li:not(:first-child):not(:last-child) {
	border-radius:0
}
.pagination-group li:first-child {
	border-radius:4px 0 0 4px
}
.pagination-group li:last-child {
	border-radius:0 4px 4px 0
}
.pagination-group .active,.pagination-group a:hover {
	background:#f5f5f5;
	border-radius:0
}
.pagination-big a {
	padding:10px 16px;
	font-size:16px
}
.pagination-small a {
	padding:5px 10px;
	font-size:12px
}
.pagination.border-main .active a,.pagination.border-sub .active a,.pagination.border-dot .active a,.pagination.border-black .active a,.pagination.border-gray .active a,.pagination.border-red .active a,.pagination.border-yellow .active a,.pagination.border-blue .active a,.pagination.border-green .active a {
	color:#fff
}
@media(min-width:1200px) {
	::-webkit-scrollbar {
	width:8px;
	height:8px;
	background:#ffffff;
}
::-webkit-scrollbar-thumb {
	background:#f7f7f7;
}
::-webkit-scrollbar-track-piece {
	width:8px;
	height:8px;
}
}*,*:before,*:after {
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-ms-box-sizing:border-box;
	-o-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}
* {
	outline:none;
	font-family:'Microsoft Yahei',Arial;
}
*[hide] {
	display:none;
}
*::-webkit-input-placeholder {
	color:#181818;
	opacity:.68;
}
*::-moz-input-placeholder {
	color:#181818;
	opacity:.68;
}
*::-ms-input-placeholder {
	color:#181818;
	opacity:.68;
}
html,body {
	margin:0;
	width:100%;
	min-height:100%;
	word-wrap:break-word;
	word-break:break-all;
	background:#ffffff;
	font-size:14px;
	line-height:1.5;
	color:#181818;
	font-family:'Microsoft Yahei',Arial;
}
dir,ul,ol,li {
	margin:0;
	padding:0;
	list-style:none;
}
form {
	margin:0;
	padding:0;
}
p,dl,dt,dd {
	margin:0;
	padding:0;
}
img {
	border:none;
}
p>img {
	max-width:100%;
}
ins {
	text-decoration:none;
}
a {
	text-decoration:none;
	color:#181818;
	transition:.3s;
}
a:hover {
	color:#93b3fc;
}
a[button="button"] {
	display:inline-block;
	padding:4px 18px;
	border-radius:4px;
	background:#93b3fc;
	color:#fff;
}
a[button="button"] * {
	cursor:pointer;
}
a[button="button"]:hover {
	opacity:.8;
	box-shadow:0 0 5px rgba(0,0,0,0.1);
}
@media(max-width:767px) {
	a[button="button"] {
	padding:2px 12px;
	border-radius:2px;
}
.bottom-items {
	display:none
}
}h1,h2,h3,h4,h5,h6 {
	margin:0;
	padding:0;
	font-weight:400;
}
h1 {
	font-size:28px;
}
h2 {
	font-size:21px;
}
h3 {
	font-size:16px;
}
h4 {
	font-size:15px;
}
h5 {
	font-size:13px;
}
h6 {
	font-size:12px;
}
table,tbody {
	width:100%;
	border-collapse:collapse;
}
tr {
	background:#fff;
	transition:.3s;
}
tr:hover {
	background:#f8f8f8;
}
th {
	background:#fcfcfc;
}
th,td {
	border:1px solid #f0f0f0;
	padding:8px;
	text-align:left;
}
section {
	display:block;
}
article {
	display:block;
	max-width:100%;
	margin:0 auto;
}
article:after {
	display:block;
	content:'';
	clear:both;
}
article iframe,article video,article img {
	max-width:100%;
}
@media(min-width:1200px) {
	article {
	padding:0 28px;
	width:1388px;
}
}@media(max-width:1199px) {
	article {
	padding:0 18px;
}
}@media(max-width:767px) {
	article {
	padding:0 8px;
}
}aside iframe,aside video,aside img {
	max-width:100%;
	margin:0px auto;
	text-align:center;
	height:auto;
	overflow:hidden;
	display:flex;
	justify-content:center;
	align-items:center;
	/* 垂直居中 */
}
aside:after {
	display:block;
	content:'';
	clear:both;
}
dir {
	display:block;
}
dir>ol {
	margin:0 -4px;
	text-align:center;
	font-size:0;
}
dir>ol>li {
	display:inline-block;
	margin:4px;
}
dir>ol>li>a {
	display:block;
	padding:2px 8px;
	border-radius:3px;
	border:1px solid #f0f0f0;
	font-size:14px;
}
dir>ol>li>a.on,dir>ol>li>a:hover {
	background:#67b306;
	border-color:#67b306;
	color:#fff;
}
dir>ol>li>a.on,dir>ol>li>a.no {
	cursor:no-drop;
}
@media(max-width:767px) {
	dir>ol {
	margin:-3px;
}
dir>ol>li {
	display:inline-block;
	margin:3px;
}
dir>ol>li>a {
	display:block;
	padding:0 8px;
	border-radius:2px;
}
}select,textarea,input[type=file],input[type=text],input[type=password],input[type=number],input[type=tel],input[type=email] {
	display:block;
	width:100%;
	margin:0;
	transition:.3s;
	padding:8px 12px;
	border-radius:3px;
	background:#fff;
	border:1px solid #e8e8e8;
	line-height:1.5;
	height:39px;
	font-size:14px;
}
select[multiple],textarea {
	height:102px;
}
select:hover,textarea:hover,input[type]:hover,div.file_input>input[type=file]:hover+input[type=text],select:focus,textarea:focus,input[type]:focus,div.file_input>input[type=file]:focus+input[type=text] {
	box-shadow:0 0 8px rgba(0,0,0,.08);
}
h6.alert {
	position:fixed;
	top:0;
	left:0;
	right:0;
	z-index:8888888;
	opacity:0;
	user-select:none;
	pointer-events:none;
	text-align:center;
	background:none !important;
}
h6.alert.on {
	top:20px;
	opacity:1;
	transition:0.3s;
}
h6.alert>b {
	display:inline-block;
	font-weight:normal;
	position:relative;
	padding:13px 20px 13px 48px;
	text-align:left;
	max-width:500px;
	background:#fff;
	border:1px solid #e4e7ed;
	box-shadow:0 0 12px rgba(0,0,0,.12);
	border-radius:6px;
	font-size:14px;
	line-height:22px;
}
h6.alert>b:before {
	position:absolute;
	top:14px;
	left:16px;
	font-family:'FontAwesome';
	content:"\f128";
	width:20px;
	height:20px;
	border-radius:50%;
	line-height:20px;
	text-align:center;
	background:#d8d8d8;
	color:#fff;
}
h6.alert.red>b:before {
	background:#fd4e5e;
	content:"\f12a";
}
h6.alert.green>b:before {
	background:#13ce67;
	content:"\f00c";
}
h6.alert.brown>b:before {
	background:#a5692d;
	content:"\f129";
}
h6.alert.yellow>b:before {
	background:#ffd700;
	content:"\f129";
}
h6.alert.blue>b:before {
	background:#1880ff;
	content:"\f00c";
}
h6.alert.gold>b:before {
	background:#edc86c;
	content:"\f129";
}
@media(max-width:767px) {
	h6.alert>b {
	max-width:100%;
}
}dl.form8 input[name^="params"][type="file"] {
	opacity:0;
}
div.file_input {
	display:block;
	position:relative;
}
div.file_input>input[type=file] {
	position:absolute;
	z-index:2;
	top:0;
	left:0;
	height:100%;
	opacity:0;
	cursor:pointer;
}
div.file_input>input[type=text] {
	padding-left:60px;
	cursor:pointer;
}
div.file_input>i {
	position:absolute;
	z-index:1;
	background:#f8f8f8;
	cursor:pointer;
	border-right:1px solid #e8e8e8;
	top:1px;
	left:1px;
	bottom:1px;
	text-align:center;
	width:48px;
	font-size:16px;
}
div.file_input>i:before {
	position:absolute;
	top:50%;
	left:0;
	right:0;
	line-height:16px;
	margin-top:-8px;
}
code.tights>select+select {
	margin-top:2px;
}
section.copyright {
	background:#000;
	padding:8px 0;
	text-align:center;
	color:#fff;
}
section.copyright a {
	color:#fff;
}
div[comment] {
	background:#fff;
}
div[comment] div {
	display:block;
}
div[comment] div>textarea {
	display:block;
	border:1px solid #b8b8b8;
	height:88px;
}
div[comment] div>p {
	margin-top:18px;
}
div[comment] div>p>button {
	cursor:pointer;
	border:none;
	color:#fff;
	line-height:28px;
	padding:2px 18px 0 18px;
	border-radius:18px;
	background:#585858;
	transition:.3s;
}
div[comment] div>p>button:hover {
	background:#93b3fc;
}
div[comment] div>p>label {
	cursor:pointer;
	padding-left:8px;
	display:inline-block;
	line-height:30px;
	color:#282828;
}
div[comment] ul {
	display:block;
	list-style:none;
	background:#fff;
	margin-top:22px;
}
div[comment]>ul {
	margin-top:32px;
}
div[comment] ul>li {
	display:block;
	list-style:none;
	position:relative;
	margin-top:18px;
}
div[comment]>ul>li {
	margin-top:28px;
}
div[comment] ul>li:first-child {
	margin-top:0;
}
div[comment] ul>li>img {
	display:block;
	position:absolute;
	left:0;
	top:0;
	width:30px;
	height:30px;
	border-radius:50%;
}
div[comment]>ul>li>img {
	width:36px;
	height:36px;
}
div[comment] ul>li>dl {
	padding:0 0 0 42px;
}
div[comment]>ul>li>dl {
	padding:0 0 0 48px;
}
div[comment] ul>li>dl>dt:after {
	display:block;
	content:'';
	clear:both;
}
div[comment] ul>li>dl>dt>b {
	float:left;
	font-size:15px;
	line-height:24px;
	color:#383838;
}
div[comment]>ul>li>dl>dt>b {
	line-height:28px;
}
div[comment] ul>li>dl>a {
	color:#000;
	display:inline-block;
	margin:8px 0 0 42px;
	cursor:pointer;
}
div[comment] ul>li>dl>a:hover {
	color:#93b3fc;
}
div[comment] ul>li>dl>a>i {
	padding-left:4px;
	line-height:inherit;
}
div[comment] ul>li>dl>p {
	font-size:15px;
	line-height:25px;
	margin:4px 0 6px 0;
	color:#181818;
}
div[comment]>ul>li>dl>p {
	font-size:16px;
	line-height:28px;
	margin:6px 0 8px 0;
}
div[comment] ul>li>dl>p>a {
	color:#686868;
}
div[comment] ul>li>dl>dd {
	display:block;
}
div[comment] ul>li>dl>dd>a[like] {
	font-size:15px;
	line-height:26px;
	color:#585858;
	cursor:pointer;
	line-height:28px;
	margin-left:8px;
}
div[comment] ul>li>dl>dd>a[like]:before {
	padding-right:2px;
}
div[comment] ul>li>dl>dd>a[reply] {
	display:inline-block;
	font-size:14px;
	padding:0 8px;
	line-height:26px;
	cursor:pointer;
	background:#f8f8f8;
	color:#282828;
	border-radius:18px;
	margin-left:8px;
}
div[comment] ul>li>dl>dd>a[reply]:before {
	margin-right:4px;
}
div[comment] ul>li>dl>dd>a[reply].on,div[comment] ul>li>dl>dd>a[reply]:hover {
	color:#93b3fc;
}
div[comment] ul>li>dl>dd>i {
	font-style:normal;
	font-size:14px;
	color:#888;
	line-height:26px;
}
div[comment] ul>li>dl>div {
	margin:14px 0;
}
div[comment] ul>li>dl>div>textarea {
	height:68px;
}
div[comment] ul>li>dl>div>p {
	margin-top:12px;
}
div[comment] ul>li>dl>div>p>button {
	line-height:24px;
	padding:2px 14px 0 14px;
}
div[comment] ul>li>dl>div>p>button:hover {
	background:#93b3fc;
}
div[comment] ul>li>dl>div>p>label {
	line-height:26px;
}
div[comment]>a {
	display:block;
	background:#f8f8f8;
	margin-top:32px;
	line-height:38px;
	text-align:center;
	border-radius:3px;
	cursor:pointer;
	color:#585858;
}
div[comment]>a>i {
	line-height:inherit;
}
div[comment]>a:hover {
	color:#93b3fc;
}
@media(max-width:767px) {
	div[comment] ul {
	margin-top:18px;
}
div[comment]>ul {
	margin-top:28px;
}
div[comment] ul>li {
	margin-top:14px;
}
div[comment]>ul>li {
	margin-top:24px;
}
div[comment] ul>li>img {
	width:26px;
	height:26px;
}
div[comment]>ul>li>img {
	width:30px;
	height:30px;
}
div[comment] ul>li>dl {
	padding:0 0 0 35px;
}
div[comment]>ul>li>dl {
	padding:0 0 0 40px;
}
div[comment] ul>li>dl>dt>b {
	font-size:14px;
	line-height:22px;
}
div[comment]>ul>li>dl>dt>b {
	line-height:24px;
}
div[comment] ul>li>dl>p {
	font-size:14px;
	line-height:22px;
	margin:4px 0;
}
div[comment]>ul>li>dl>p {
	font-size:14px;
	line-height:22px;
	margin:4px 0;
}
div[comment] ul>li>dl>dd>a[like] {
	font-size:13px;
}
div[comment] ul>li>dl>dd>a[reply] {
	font-size:12px;
	padding:0 8px;
	line-height:22px;
	margin-left:6px;
}
div[comment] ul>li>dl>dd>i {
	font-size:12px;
	line-height:22px;
}
div[comment] ul>li>dl>a {
	margin:2px 0 0 35px;
}
div[comment] ul>li>dl>div {
	margin:8px 0;
}
}@media(min-width:1600px) {
	article {
	width:1600px;
}
}h1,h2,h3,h4,h5,h6,b,strong {
	font-weight:bold;
}
@media screen  and (min-width:981px) {
	.header.in.on a:before {
	position:absolute;
	left:0;
	bottom:0;
	height:3px;
	content:'';
	background:#f20f0f;
}
.header-condition .icon {
	font-size:16px;
	width:20px;
	height:20px;
	margin-right:3px;
	font-style:normal;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
	vertical-align:middle;
	margin-top:-3px;
	fill:currentColor;
}
a.souBUt {
	color:#333
}
#c_static_001-1730701795421 .navTitle1:hover:after {
	width:100%;
}
#c_static_001-1730701795421 .navTitle1:after {
	content:"";
	width:0;
	height:3px;
	background:var(--yx_Grad);
	position:absolute;
	left:50%;
	bottom:15px;
	transform:translateX(-50%);
	transition:.5s all;
}
:root {
	--yx_Color:#93b3fc;
	--yx_Grad:#93b3fc;
}
#c_effect_138_P_008-1732007093948 .e_search-1 .p_btn button {
	border:0;
	background:none;
}
}@media screen and (max-width:768px) {
	#c_static_001-1730701795421 .header {
	z-index:99999;
}
#c_static_001-1730701795421 .topNav {
	position:fixed;
	width:100%;
	height:100%;
	right:-100%;
	top:0;
	background:rgba(0,0,0,0.5);
	z-index:99999;
	display:flex;
	justify-content:flex-end;
	transition:all 0.5s;
	padding:0;
}
#c_static_001-1730701795421 .yy_b {
	display:flex;
	align-items:center;
	line-height:48px;
	color:#333;
	width:100%;
	justify-content:space-between
}
a.yy_b {
	color:#333;
}
#c_static_001-1730701795421 .yy_b {
	line-height:48px;
	margin-top:-8px;
}
svg {
	width:30px;
	height:30px;
}
}@media screen and (max-width:980px) {
	.header {
	display:block;
	height:48px;
}
.header.in {
	height:48px;
	color:#fff;
}
#c_static_001-1730701795421 .yy_b {
	display:flex;
	align-items:center;
	line-height:75px;
	color:#333;
	width:100%;
	justify-content:space-between
}
a.yy_b {
	color:#333;
}
}/* 基础高亮样式 - 全局通用 */
.nav_yj.on {
	position:relative;
	/* 为伪元素定位做准备 */
}
/* 桌面端（默认）高亮样式 - 下划线+文字变色 */
@media (min-width:1200px) {
	.nav_yj.on .navTitle1 {
	color:#93b3fc !important;
	/* 高亮文字色 */
}
}/* 平板/小屏桌面端（768px-1199px）适配 */
@media (max-width:1199px) and (min-width:768px) {
	.nav_yj.on .navTitle1 {
	color:#93b3fc !important;
	font-weight:600;
	/* 加粗突出 */
}
.nav_yj.on {
	background:rgba(147,179,252,0.1);
	/* 浅色背景突出 */
}
}/* 移动端（≤767px）适配 */
@media (max-width:767px) {
	.nav_yj.on .navTitle1 {
	color:#93b3fc !important;
}
.nav_yj.on {
	background:#f0f5ff;
	/* 移动端用背景色区分 */
    padding-left:12px;
	/* 配合左侧边框缩进 */
    border-left:3px solid #93b3fc;
	/* 左侧高亮边框 */
}
}/* 修复原有样式冲突 - 确保on类优先级 */
.nav_yj.on .Mjiantou {
	color:#93b3fc !important;
	/* 箭头同步高亮 */
}
.topNav .nav-item .nav_yj.on {
	/* 覆盖父级样式，确保高亮生效 */
  color:#93b3fc !important;
}
.header {
	display:block;
	height:78px;
}
.header.in {
	height:0;
	color:#fff;
}
.header.in a {
	color:#fff;
}
.header-condition {
	display:block;
	height:78px;
	position:fixed;
	left:0;
	top:0;
	right:0;
	z-index:88888;
	transition:.3s;
}
.header.on .header-condition {
	box-shadow:0 2px 8px rgba(0,0,0,.18);
}
.header-logo {
	float:left;
	height:100%;
	line-height:78px;
	font-size:0;
}
.header-logo img.pc {
	display:inline-block;
	vertical-align:middle;
	max-width:248px;
	max-height:100%;
}
.header-logo img.mobile {
	display:none;
}
nav {
	float:right;
	line-height:58px;
	margin:10px 0 0 18px;
}
nav>ul:after {
	display:block;
	content:'';
	clear:both;
}
nav>ul>li {
	float:left;
	position:relative;
	margin:0 0 0 6px;
}
nav>ul>li>a {
	display:block;
	padding:0 14px;
	position:relative;
	font-size:16px;
}
nav>ul>li>a:before {
	position:absolute;
	left:0;
	bottom:0;
	height:3px;
	content:'';
	background:#93b3fc;
}
nav>ul>li:hover>a {
	color:#93b3fc;
}
nav>ul>li ul {
	position:absolute;
	display:none;
	top:100%;
	left:0;
	min-width:128px;
	line-height:38px;
	padding:12px 0;
	background:#fff;
	border:1px solid #e8e8e8;
	box-shadow:0 2px 8px rgba(0,0,0,.18);
}
nav>ul>li ul>li {
	display:block;
}
nav li:hover>ul {
	display:block;
}
nav>ul>li li>ul {
	top:0;
	left:100%;
	box-shadow:2px 2px 8px rgba(0,0,0,.18);
}
nav>ul>li li>a {
	display:block;
	white-space:nowrap;
	padding:0 18px;
}
nav>ul>li li>a:hover {
	background:#f8f8f8;
}
nav>ul>li>a.on,nav>ul>li li>a.on {
	color:#93b3fc;
}
nav>ul>li>a.on:before {
	width:100%;
}
@media(min-width:1200px) {
	nav>ul>li {
	margin-left:0px;
}
}@media(min-width:1400px) {
	nav>ul>li {
	margin-left:18px;
}
}@media(min-width:1600px) {
	nav>ul>li {
	margin-left:38px;
}
}.header-inter {
	float:right;
	height:38px;
	line-height:38px;
	margin:20px 0 0 18px;
}
.header-search {
	float:left;
	margin-left:2px;
	position:relative;
	padding-bottom:20px;
}
.search-icon {
	display:block;
	width:38px;
	height:38px;
	text-align:center;
	border-radius:28px;
	transition:.3s;
	cursor:pointer;
}
.header-search:hover .search-icon {
	background:#f8f8f8;
	color:#93b3fc;
}
.search-icon>a {
	display:block;
	line-height:38px;
	font-size:20px;
}
.header-language {
	float:left;
	margin-left:2px;
	position:relative;
	padding-bottom:12px;
}
.language-icon {
	display:block;
	width:38px;
	height:38px;
	text-align:center;
	border-radius:28px;
	transition:.3s;
	cursor:pointer;
}
.header-language:hover .language-icon {
	background:#f8f8f8;
	color:#93b3fc;
}
.language-icon>a {
	display:block;
	line-height:38px;
	font-size:20px;
}
.language-list {
	position:absolute;
	display:none;
	top:100%;
	right:-18px;
	width:128px;
	padding:12px 0;
	background:#fff;
	border:1px solid #e8e8e8;
	box-shadow:0 2px 8px rgba(0,0,0,.18);
}
.header-language:hover .language-list {
	display:block;
}
.language-list>a {
	display:block;
	line-height:34px;
	padding:0 0 0 18px;
}
.language-list>a:hover {
	background:#f8f8f8;
}
.language-list>a>img {
	display:inline-block;
	vertical-align:middle;
	position:relative;
	top:-1px;
	max-height:14px;
}
.language-list>a>span {
	display:inline-block;
	margin-left:4px;
}
.header-member {
	float:left;
	margin-left:2px;
	position:relative;
	padding-bottom:12px;
}
.header-member>a {
	display:block;
	line-height:38px;
	height:38px;
	padding:0 12px 0 10px;
	border-radius:28px;
	transition:.3s;
	cursor:pointer;
}
.header-member:hover>a {
	background:#f8f8f8;
	color:#93b3fc;
}
.header-member>a>img {
	float:left;
	width:22px;
	height:22px;
	margin:8px 5px 0 0;
	border-radius:50%;
	box-shadow:0 0 2px rgba(0,0,0,.28);
}
.header-member>a>b {
	float:left;
	font-weight:normal;
}
.header-member>ul {
	position:absolute;
	display:none;
	top:100%;
	right:0;
	width:128px;
	padding:12px 0;
	background:#fff;
	border:1px solid #e8e8e8;
	box-shadow:0 2px 8px rgba(0,0,0,.18);
}
.header-member:hover>ul {
	display:block;
}
.header-member>ul>li>a {
	display:block;
	line-height:34px;
	padding:0 0 0 18px;
}
.header-member>ul>li>a:hover {
	background:#f8f8f8;
}
.header-login {
	float:left;
	margin-left:2px;
}
.header-login a {
	display:block;
	float:left;
	line-height:38px;
	height:38px;
	padding:0 12px;
	text-align:center;
	border-radius:28px;
	transition:.3s;
	cursor:pointer;
}
.header-login a:hover {
	background:#f8f8f8;
	color:#93b3fc;
}
.header-login a>i {
	line-height:inherit;
	font-size:20px;
	position:relative;
	top:1px;
}
.header-navicon {
	display:none;
}
.header.in:hover .header-condition,.header.in.on .header-condition,.header-condition.on {
	background:#fff;
	color:#181818;
}
.header.in:hover .header-condition a,.header.in.on .header-condition a,.header-condition.on a {
	color:#181818;
}
.header.in:hover .header-condition a:hover,.header.in.on .header-condition a:hover,.header-condition.on a:hover {
	color:#93b3fc
}
.header.in:hover .header-inter,.header.in:hover .header-inter a,.header.in.on .header-inter,.header.in.on .header-inter a,.header-condition.on .header-inter,.header-condition.on .header-inter a {
	color:#686868;
}
.header.in:hover .header-inter a:hover,.header.in.on .header-inter a:hover,.header-condition.on .header-inter a:hover {
	color:#93b3fc;
}
.head {
	position:relative;
	z-index:9;
}
.head .search {
	float:right;
	padding:0;
}
.head .form>form {
	position:relative;
	display:block;
	width:208px;
	height:38px;
}
.head .form>form>input {
	display:block;
	width:100%;
	height:auto;
	line-height:20px;
	padding:8px 38px 8px 12px;
	transition:.3s;
	background:#fff;
	border:1px solid #e8e8e8;
}
.head .form>form>input:hover,.head .form>form>input:focus {
	box-shadow:0 0 8px rgba(0,0,0,.08);
}
.head .form>form>button {
	position:absolute;
	top:0;
	right:0;
	color:rgb(128,128,128);
	width:38px;
	height:38px;
	line-height:38px;
	cursor:pointer;
	background:none;
	border:none;
	padding:0;
	transition:.2s;
	font-size:14px;
}
.head .form>form>button:hover {
	color:rgb(17,121,215);
	box-shadow:none;
}
@media(max-width:1199px) {
	.head .search {
	padding:20px 0 8px 0;
}
}@media(max-width:767px) {
	.head .search {
	padding:0 0 0 8px;
}
.head .search>i {
	display:block;
	line-height:40px;
	font-size:18px;
}
.head .search>i.on {
	color:rgb(17,121,215);
}
.head .form {
	position:absolute;
	top:100%;
	right:0;
	padding:8px;
	visibility:hidden;
	opacity:0;
	transform:translateY(-8px);
	transition:.3s;
	background:#383838;
}
.head .form>form {
	width:250px;
}
.head .search>i.on+.form {
	visibility:visible;
	opacity:1;
	transform:translateY(0);
}
}.head .form {
	position:absolute;
	top:100%;
	right:0;
	padding:8px;
	visibility:hidden;
	opacity:0;
	transform:translateY(-8px);
	transition:.3s;
	background:#383838;
}
.head .search>i.on+.form {
	visibility:visible;
	opacity:1;
	transform:translateY(0);
}
@media(max-width:1200px) {
	nav {
	position:absolute;
	top:100%;
	left:8px;
	right:8px;
	float:none;
	line-height:44px;
	margin:-8px 0 0;
	background:#fff;
	border:1px solid #e8e8e8;
	box-shadow:0 2px 8px rgba(0,0,0,.18);
	overflow:auto;
	display:none;
}
nav>ul {
	padding:12px 0;
}
nav>ul>li {
	float:none;
	margin:0;
}
nav>ul li>a,nav>ul>li li>a {
	display:inline-block;
}
nav>ul>li>i {
	position:absolute;
	top:0;
	right:0;
	left:0;
	height:44px;
}
nav>ul>li>a {
	position:relative;
	z-index:8;
}
nav>ul>li>a:before {
	height:auto;
	width:3px;
}
nav>ul>li>a.on:before {
	width:3px;
	height:100%;
}
nav>ul>li ul {
	position:static;
	padding:0;
	border:none;
	box-shadow:none;
	background:#f8f8f8;
}
nav>ul>li ul ul {
	display:block;
}
nav>ul>li li>ul {
	box-shadow:none;
	padding-left:8px;
}
nav li:hover>ul {
	display:none;
}
nav li li:hover>ul {
	display:block;
}
nav li.in>ul {
	display:block;
}
.header.in nav>ul>li>a {
	color:#181818;
}
.header-navicon {
	float:left;
	margin-left:6px;
	display:block;
}
.navicon-icon {
	display:block;
	width:38px;
	height:38px;
	text-align:center;
	border-radius:28px;
	transition:.3s;
	cursor:pointer;
}
.header.nav .header-navicon .navicon-icon,.header-navicon:hover .navicon-icon {
	background:#f8f8f8;
	color:#93b3fc;
}
.navicon-icon>a {
	display:block;
	line-height:38px;
	font-size:22px;
}
.header.nav .header-navicon .navicon-icon a {
	color:#93b3fc;
}
.header.in.nav .header-condition {
	background:#fff;
	color:#181818;
}
.header.in.nav .header-inter,.header.in.nav .header-inter a {
	color:#686868;
}
.header.nav nav {
	display:block;
}
}.banner {
	display:block;
	position:relative;
}
.banner-swiper {
	display:block;
	overflow:hidden;
	position:relative;
	z-index:6;
}
.banner-outer {
	width:5000%;
}
.banner-outer:after {
	display:block;
	content:'';
	clear:both;
}
.banner-div {
	width:2%;
	float:left;
	position:relative;
}
.banner-content {
	position:absolute;
	left:0;
	top:0;
	right:0;
	bottom:0;
	z-index:8;
	display:-webkit-box;
	display:-moz-box;
	display:-ms-flexbox;
	display:-o-box;
	display:box;
	-webkit-box-pack:center;
	-moz-box-pack:center;
	-ms-flex-pack:center;
	-o-box-pack:center;
	box-pack:center;
	-webkit-box-align:center;
	-moz-box-align:center;
	-ms-flex-align:center;
	-o-box-align:center;
	box-align:center;
	color:;
	text-align:;
}
.banner-image {
	display:block;
}
.banner-image img {
	width:100%;
	display:block;
	object-fit:cover;
}
.banner-prev,.banner-next {
	position:absolute;
	z-index:8;
	top:50%;
	width:48px;
	height:48px;
	line-height:48px;
	text-align:center;
	margin-top:-18px;
	background:rgba(0,0,0,0.28);
	cursor:pointer;
	opacity:0;
	transition:0.3s;
}
.banner-swiper:hover .banner-prev,.banner-swiper:hover .banner-next {
	opacity:1;
}
.banner-prev i,.banner-next i {
	color:#fff;
	font-size:48px;
}
.banner-prev:hover i,.banner-next:hover i {
	color:#93b3fc;
}
.banner-prev {
	left:0;
}
.banner-next {
	right:0;
}
.banner-draw {
	position:absolute;
	z-index:8;
	bottom:3.8%;
	left:0;
	right:0;
}
.banner-draw>article {
	display:block;
	text-align:center;
}
.banner-draw>article>span {
	display:inline-block;
	width:12px;
	height:12px;
	cursor:pointer;
	background:rgba(255,255,255,0.38);
	box-shadow:0 0 2px rgba(0,0,0,0.28);
	margin:0 6px;
	border-radius:8px;
	transition:0.2s;
}
.banner-draw>article>span[class*="active"] {
	background:#93b3fc;
}
.banner-content span {
	font-size:50px;
	color:#fff
}
@media screen and (max-width:767px) {
	.banner-draw>article>span {
	margin:0 2px;
}
.banner-content span {
	font-size:1.6rem;
	color:#fff;
	padding-top:4rem
}
}.bottom {
	padding:38px 0;
	background:#222222;
}
.bottom * {
	color:#88888a;
}
.bottom a:hover {
	color:#93b3fc;
}
.bottom-contact {
	float:left;
	width:28%;
	padding-right:18px;
}
.bottom-contact ul {
	display:block;
	margin-top:18px;
}
.bottom-contact ul>li {
	margin-top:12px;
	position:relative;
	padding-left:32px;
}
.bottom-contact i {
	width:24px;
	height:24px;
	line-height:22px;
	position:absolute;
	top:0;
	left:0;
	font-size:14px;
	text-align:center;
	border-radius:50%;
	border:1px solid #88888a;
}
.bottom-contact a,.bottom-contact u {
	text-decoration:none;
	line-height:24px;
	color:#eee8ed;
}
.bottom-items {
	float:left;
	width:54%;
	font-size:0;
}
.bottom-items>dl {
	display:inline-block;
	width:25%;
	padding-right:8px;
	vertical-align:top;
}
.bottom-items>dl>dt {
	display:block;
	margin:0 0 16px 0;
	font-size:18px;
}
.bottom-items>dl>dt>a {
	font-weight:bold;
	color:#eee8ed;
}
.bottom-items>dl>dt:after {
	display:block;
	content:'';
	width:18px;
	height:2px;
	margin-top:6px;
	background:#93b3fc;
}
.bottom-items>dl>dd {
	display:block;
}
.bottom-items>dl>dd>a {
	display:block;
	margin-top:12px;
	font-size:14px;
}
.bottom-ewm {
	float:right;
	width:18%;
}
.bottom-ewm span {
	float:right;
}
.bottom-ewm i {
	display:inline-block;
	padding:6px;
	border:1px solid #88888a;
}
.bottom-ewm img.ewm {
	width:128px;
	display:block;
}
.bottom-ewm u {
	text-decoration:none;
	margin-top:2px;
	text-align:center;
	display:block;
	color:#eee8ed;
}
@media screen and (min-width:768px) and (max-width:1366px) {
	.bottom {
	text-align:center;
}
.bottom-contact {
	float:none;
	display:inline-block;
	width:380px;
	max-width:100%;
	vertical-align:top;
	text-align:left;
}
.bottom-items {
	float:none;
	width:100%;
	margin-top:28px;
}
.bottom-items>dl>dt:after {
	margin-left:auto;
	margin-right:auto;
}
.bottom-ewm {
	float:none;
	display:inline-block;
	width:auto;
}
.banner-content span {
	font-size:3rem;
	color:#fff
}
}@media screen and (min-width:1367px) {
	.banner-content span {
	font-size:50px;
	color:#fff
}
}@media screen  and (max-width:767px) {
	.bottom-contact {
	width:300px;
}
.bottom-items {
	margin-top:0;
}
.bottom-items>dl {
	width:50%;
	margin-top:18px;
	padding:0;
}
.bottom-ewm {
	margin-top:28px;
}
}.footer {
	color:#fff;
	padding:16px 0;
	background:#181818;
}
.footer * {
	color:#66666a;
}
.footer a:hover {
	color:#93b3fc;
}
.footer-link {
	float:right;
}
.footer-link span {
	display:inline-block;
}
.footer-link a {
	display:inline-block;
	margin-left:8px;
}
.footer-beian {
	display:block;
}
.footer-beian + aside {
	margin-top:8px;
}
.footer-link a,.bottom-contact u,.bottom-contact a,.footer-beian span,.footer-beian + aside p {
	font-size:14px;
	line-height:26px
}
.footer-beian span+span {
	margin-left:8px;
	display:inline-block;
}
.footer-beian img {
	vertical-align:middle;
	margin-right:2px;
	position:relative;
	top:-2px;
	height:14px;
}
@media screen and (max-width:1200px) {
	.footer {
	text-align:center;
}
.footer-link {
	float:none;
	margin-bottom:8px;
}
}.subnav {
	position:relative;
	z-index:8;
	line-height:58px;
	padding:8px 0;
	font-size:15px;
	background:#f8f8f8;
}
.subnav-position {
	float:left;
	color:#fff
}
.subnav-position>b {
	float:left;
	font-weight:normal;
	color:#686868;
}
.subnav-position>a {
	float:left;
	padding:0 6px;
	color:#181818;
}
.subnav-position>a::before {
	content:">";
	/* 在每个面包屑项之间添加箭头 */
  padding:0 8px;
	/* 箭头与文本之间的间距 */
  color:#181818;
}
.subnav-position>i {
	float:left;
	padding:0 6px;
	color:#989898;
	line-height:inherit;
	font-style:normal;
}
.subnav-list {
	float:right;
}
.subnav-list>ul>li {
	float:left;
	position:relative;
}
.subnav-list>ul>li+li {
	margin:0 0 0 8px;
}
.subnav-list>ul>li>a {
	display:block;
	padding:0 14px;
	font-size:16px;
	position:relative;
}
.subnav-list>ul>li ul {
	position:absolute;
	display:none;
	top:100%;
	left:0;
	min-width:128px;
	padding:12px 0;
	background:#fff;
	border:1px solid #e8e8e8;
	box-shadow:0 2px 8px rgba(0,0,0,.18);
}
.subnav-list>ul>li ul>li {
	line-height:38px;
}
.subnav-list li:hover>ul {
	display:block;
}
.subnav-list>ul>li li>ul {
	top:0;
	left:100%;
	box-shadow:2px 2px 8px rgba(0,0,0,.18);
}
.subnav-list>ul>li li>a {
	display:block;
	padding:0 18px;
	white-space:nowrap;
	font-size:14px;
}
.subnav-list>ul>li li>a:hover {
	background:#f8f8f8;
}
.subnav-list>ul>li>a.on,.subnav-list>ul>li li>a.on {
	color:#93b3fc;
}
.subnav-list>ul>li>a.on:before {
	position:absolute;
	bottom:0;
	left:0;
	right:0;
	content:'';
	height:3px;
	background:#93b3fc;
}
@media(max-width:1200px) {
	.subnav {
	line-height:38px;
}
.subnav-list {
	display:none;
}
}@media(max-width:767px) {
	.subnav {
	line-height:28px;
	font-size:14px;
}
.subnav-position>a {
	padding:0 4px;
}
.subnav-position>i {
	padding:0 4px;
}
}dir {
	display:block;
	text-align:center;
}
dir>ol {
	display:block;
	font-size:0;
}
dir>ol>li {
	display:inline-block;
}
dir>ol>li>a {
	border:1px solid #e8e8e8;
	background:#fff;
	padding:0 12px;
	line-height:32px;
}
@media(max-width:767px) {
	dir>ol>li>a {
	padding:0 8px;
	line-height:26px;
}
.toolbar185 {
	display:block
}
}.toolbar185 {
	width:52px;
	position:fixed;
	left:1%;
	top:50%;
	margin-top:-135px;
	z-index:999;
}
.toolbar185 dd {
	width:51px;
	height:51px;
	margin-bottom:1px;
	position:relative;
	-webkit-border-radius:100%;
	border-radius:100%;
	margin-top:4px;
	border:#ebebeb solid 1px;
	background-color:#fff;
	-webkit-border-radius:100%;
	border-radius:100%;
}
.toolbar185 dd i {
	width:51px;
	height:51px;
	display:block;
	position:absolute;
	left:0;
	top:0;
	cursor:pointer;
	text-align:center;
	-webkit-border-radius:100%;
	border-radius:100%;
}
.toolbar185 dd i span {
	width:35px;
	height:35px;
	display:block;
	margin:8px 0 0 8px;
	background:url(../images/tupian.png) no-repeat 0 0;
}
.toolbar185 dd.gottop {
	display:none;
}
.toolbar185 .slide-tel {
	display:block;
	width:0;
	height:53px;
	line-height:53px;
	font-size:24px;
	font-weight:bold;
	font-family:arial;
	color:#FFF;
	position:absolute;
	padding:0 0 0 53px;
	top:-1px;
	left:-2px;
	-webkit-border-radius:50px;
	border-radius:50px;
	overflow:hidden;
}
.toolbar185 .pop {
	position:absolute;
	left:60px;
	top:-65px;
	background:#67b306;
	display:none;
}
.toolbar185 .pop-code185 {
	width:160px;
}
.toolbar185 .pop-code185 img {
	width:160px;
	height:140px;
	display:block;
	padding:20px 20px 0 20px;
}
.toolbar185 .pop-code185 h3 {
	height:52px;
	line-height:52px;
	text-align:center;
	color:#fff;
	font-size:18px;
	font-weight:400;
	white-space:nowrap;
	margin-top:10px;
}
.toolbar185 .pop-code185 h3 b {
	display:block;
	font-size:14px;
	font-weight:normal;
}
.toolbar185 .qq span {
	background-position:-35px -47px;
}
.toolbar185 .qq a {
	width:52px;
	height:52px;
	cursor:pointer;
	display:block;
}
.toolbar185 .qq:hover {
	background-color:#67b306;
	border-radius:100%;
}
.toolbar185 .qq:hover span {
	background-position:0 -47px;
}
.toolbar185 .tel span {
	background-position:-35px 0;
}
.toolbar185 .tel:hover {
	background:#67b306;
}
.toolbar185 .tel:hover span {
	background-position:0 0;
}
.toolbar185 .code185 span {
	background-position:-35px -95px;
}
.toolbar185 .code185:hover {
	background-color:#67b306;
	border-radius:100%;
}
.toolbar185 .code185:hover span {
	background-position:0 -95px;
}
.toolbar185 .top span {
	background-position:-35px -142px;
}
.toolbar185 .top:hover {
	background-color:#67b306;
	border-radius:100%;
}
.toolbar185 .top:hover span {
	background-position:0 -142px;
}
.toolbar185 dd:hover {
	}.box {
	position:relative;
	width:1200px;
	height:420px;
	overflow:hidden;
	margin:0 auto;
	box-shadow:0px 0px 20px 0px rgba(0,0,0,0.1);
	position:relative;
	top:20px;
	border-radius:10px;
	bottom:50;
}
