/*!
 * 财经
 * 更新于2021-1-21
 * 版权归属wpzt.net
 */

 *{box-sizing:border-box;}
 *:focus{outline:none;}
html {height:100%;}
body { 
	font-family:'Microsoft Yahei',"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size:14px;line-height:1.4;color:#333;
	-webkit-appearance:none;
	-webkit-tap-highlight-color:rgba(255,255,255,0);/*只在苹果设备有效，点击链接按钮时有灰色半透明背景*/
	-webkit-tap-highlight-color:transparent;/*去掉被点击时的高亮*/
	-webkit-box-sizing:border-box;
	box-sizing:border-box;/*边框和内边距算在内*/
	letter-spacing:.3px;/*字间距*/
	-webkit-font-smoothing:antialiased;/*去锯齿*/
	-moz-osx-font-smoothing:grayscale;
	height:100%;
	margin: 0;
	}
a {text-decoration:none;}
a:hover,a:active {text-decoration:none;}
button,input,button:focus,input:focus {outline:none;}/*去掉点击时的边框*/
ul,li {margin:0;padding:0}
li {list-style:none;}
img {object-fit:cover;}/*图片全覆盖且不变形*/
h1,h2,h3,h4,h5,h6 {margin-top:0;padding:0;margin-bottom:0;}
h1{font-size:26px;}
h2{font-size:22px;}
h3{font-size:20px;}
h4{font-size:18px;}
h5{font-size:16px;}
h6{font-size:14px;}
p,pre{margin:0;}

/*-----------------------------------布局宽度----------------------------------*/
/*大宽页--本框架针对浏览器大小有不同的宽度设置，以下container根据浏览器宽度设置三档，1400px&1200px&100%，自动切换*/

.container{padding:0;margin:0 auto;max-width:1200px}
@media (max-width:1200px){.container{max-width:100%;}
}

/*---列宽---*/
.col5{	width:5%;}
.col10{	width:10%;}
.col20{	width:20%;}
.col25{	width:25%;}
.col26{	width:26%;}
.col30{	width:30%;}
.col33{	width:33%;}
.col35{	width:35%;}
.col38{	width:38%;}
.col40{	width:40%;}
.col45{	width:45%;}
.col48{	width:48%;}
.col49{	width:49%;}
.col50{	width:50%;}
.col55{	width:55%;}
.col60{	width:60%;}
.col65{	width:65%;}
.col68{	width:68%;}
.col70{	width:70%;}
.col75{	width:75%;}
.col80{	width:80%;}
.col90{	width:90%;}
.col100{ width:100%;}
/*--三等分列宽*/
.col-3x{width:32%;}/*与弹性盒子同用，有间隔*/
.col-3d{width:33.33%;}
/*左侧带侧边栏工具的布局，侧边栏固定350px*/
.col350{width:350px;}
.col830{width:830px;}
.col850{width:850px;}
.height100{height:100%;}
.height50{height:50%;}

/*-------------------------弹性盒子（class请带上 d-flex）--------------------------*/
.fw-n{flex-wrap: nowrap;}/*不换行*/
.fw-w{flex-wrap:wrap;}/*换行*/
.fw-wr{flex-wrap: wrap-reverse;}/*换行，第一行在下方*/

.jc-fs {justify-content: flex-start;}/*左对齐*/
.jc-fe {justify-content:flex-end;}/*右对齐*/
.jc-c {justify-content:center;}/*居中*/
.jc-sb {justify-content:space-between;}/*两端对齐，项目之间的间隔都相等*/

.ai-fs {align-items: flex-start;}/*交叉轴的起点对齐*/
.ai-fe {align-items:flex-end;}/*交叉轴的终点对齐*/
.ai-c {align-items:center;}/*交叉轴的中点对齐*/
.ai-b {align-items:baseline;}/*项目的第一行文字的基线对齐*/
.ai-s {align-items: stretch;}/*占满整个容器的高度*/
/*----常用组合-----*/
.sb-c{justify-content:space-between;align-items:center;}/*两端对齐-交叉轴中点对齐*/
.sb-fs{justify-content:space-between;align-items: flex-start;}/*两端对齐-交叉轴起点对齐*/
.sb-s{justify-content:space-between;align-items: stretch;}/*两端对齐-占满整个容器的高度*/
.fs-c{justify-content:flex-start;align-items:center;}/*左对齐-交叉轴中点对齐*/
.fs-fs{justify-content:flex-start;align-items: flex-start;}/*左对齐-交叉轴起点对齐*/
.fs-s{justify-content:flex-start;align-items: stretch;}/*左对齐-占满整个容器的高度*/
.flexauto:after {content: "";flex: auto;}

/*----------------------------------边距--------------------------------------*/
/*--4个外边距--margin*/
.m0{	margin:0;}
.m5{	margin:5px;}
.m10{	margin:10px;}
.m15{	margin:15px;}
.m20{	margin:20px;}
.m25{	margin:25px;}
.m30{	margin:30px;}
.m35{	margin:35px;}
.m40{	margin:40px;}
.m45{	margin:45px;}
.m50{	margin:50px;}
.m55{	margin:55px;}
.m60{	margin:60px;}
.m65{	margin:60px;}
.m70{	margin:60px;}
.m75{	margin:60px;}
.m80{	margin:60px;}
.m85{	margin:60px;}
.m90{	margin:60px;}
/*--上下外边距--margin-top-bottom*/
.mtb0{	margin-top:0;margin-bottom:0;}
.mtb5{	margin-top:5px;margin-bottom:5px;}
.mtb10{	margin-top:10px;margin-bottom:10px;}
.mtb15{	margin-top:15px;margin-bottom:15px;}
.mtb20{	margin-top:20px;margin-bottom:20px;}
.mtb25{	margin-top:25px;margin-bottom:25px;}
.mtb30{	margin-top:30px;margin-bottom:30px;}
.mtb35{	margin-top:35px;margin-bottom:35px;}
.mtb40{	margin-top:40px;margin-bottom:40px;}
.mtb45{	margin-top:45px;margin-bottom:45px;}
.mtb50{	margin-top:50px;margin-bottom:50px;}
.mtb55{	margin-top:55px;margin-bottom:55px;}
.mtb60{	margin-top:60px;margin-bottom:60px;}
.mtb65{	margin-top:65px;margin-bottom:65px;}
.mtb70{	margin-top:70px;margin-bottom:70px;}
.mtb75{	margin-top:75px;margin-bottom:75px;}
.mtb80{	margin-top:80px;margin-bottom:80px;}
.mtb85{	margin-top:85px;margin-bottom:85px;}
.mtb90{	margin-top:90px;margin-bottom:90px;}
/*--左右外边距--margin-left-right*/
.mlrauto{	margin-left:auto;margin-right:auto;}
.mlr0{	margin-left:0;margin-right:0;}
.mlr5{	margin-left:5px;margin-right:5px;}
.mlr10{	margin-left:10px;margin-right:10px;}
.mlr15{	margin-left:15px;margin-right:15px;}
.mlr20{	margin-left:20px;margin-right:20px;}
.mlr25{	margin-left:25px;margin-right:25px;}
.mlr30{	margin-left:30px;margin-right:30px;}
.mlr35{	margin-left:35px;margin-right:35px;}
.mlr40{	margin-left:40px;margin-right:40px;}
.mlr45{	margin-left:45px;margin-right:45px;}
.mlr50{	margin-left:50px;margin-right:50px;}
.mlr55{	margin-left:55px;margin-right:55px;}
.mlr60{	margin-left:60px;margin-right:60px;}
.mlr65{	margin-left:65px;margin-right:65px;}
.mlr70{	margin-left:70px;margin-right:70px;}
.mlr75{	margin-left:75px;margin-right:75px;}
.mlr80{	margin-left:80px;margin-right:80px;}
.mlr85{	margin-left:85px;margin-right:85px;}
.mlr90{	margin-left:90px;margin-right:90px;}
/*--上外边距--margin-top*/
.mt0{	margin-top:0;}
.mt5{	margin-top:5px;}
.mt10{	margin-top:10px;}
.mt15{	margin-top:15px;}
.mt20{	margin-top:20px;}
.mt25{	margin-top:25px;}
.mt30{	margin-top:30px;}
.mt35{	margin-top:35px;}
.mt40{	margin-top:40px;}
.mt45{	margin-top:45px;}
.mt50{	margin-top:50px;}
.mt55{	margin-top:55px;}
.mt60{	margin-top:60px;}
.mt65{	margin-top:65px;}
.mt70{	margin-top:70px;}
.mt75{	margin-top:75px;}
.mt80{	margin-top:80px;}
.mt85{	margin-top:85px;}
.mt90{	margin-top:90px;}
/*--右外边距--margin-right*/
.mr0{	margin-right:0;}
.mr5{	margin-right:5px;}
.mr10{	margin-right:10px;}
.mr15{	margin-right:15px;}
.mr20{	margin-right:20px;}
.mr25{	margin-right:25px;}
.mr30{	margin-right:30px;}
.mr35{	margin-right:35px;}
.mr40{	margin-right:40px;}
.mr45{	margin-right:45px;}
.mr50{	margin-right:50px;}
.mr55{	margin-right:55px;}
.mr60{	margin-right:60px;}
.mr65{	margin-right:65px;}
.mr70{	margin-right:70px;}
.mr75{	margin-right:75px;}
.mr80{	margin-right:80px;}
.mr85{	margin-right:85px;}
.mr90{	margin-right:90px;}
/*--下外边距--margin-bottom*/
.mb0{	margin-bottom:0;}
.mb5{	margin-bottom:5px;}
.mb10{	margin-bottom:10px;}
.mb15{	margin-bottom:15px;}
.mb20{	margin-bottom:20px;}
.mb25{	margin-bottom:25px;}
.mb30{	margin-bottom:30px;}
.mb35{	margin-bottom:35px;}
.mb40{	margin-bottom:40px;}
.mb45{	margin-bottom:45px;}
.mb50{	margin-bottom:50px;}
.mb55{	margin-bottom:55px;}
.mb60{	margin-bottom:60px;}
.mb65{	margin-bottom:65px;}
.mb70{	margin-bottom:70px;}
.mb75{	margin-bottom:75px;}
.mb80{	margin-bottom:80px;}
.mb85{	margin-bottom:85px;}
.mb90{	margin-bottom:90px;}
/*--左外边距--margin-left*/
.ml0{	margin-left:0;}
.ml5{	margin-left:5px;}
.ml10{	margin-left:10px;}
.ml15{	margin-left:15px;}
.ml20{	margin-left:20px;}
.ml25{	margin-left:25px;}
.ml30{	margin-left:30px;}
.ml35{	margin-left:35px;}
.ml40{	margin-left:40px;}
.ml45{	margin-left:45px;}
.ml50{	margin-left:50px;}
.ml55{	margin-left:55px;}
.ml60{	margin-left:60px;}
.ml65{	margin-left:65px;}
.ml70{	margin-left:70px;}
.ml75{	margin-left:75px;}
.ml80{	margin-left:80px;}
.ml85{	margin-left:85px;}
.ml90{	margin-left:90px;}
/*--4个内边距--padding*/
.p0{	padding:0;}
.p5{	padding:5px;}
.p10{	padding:10px;}
.p15{	padding:15px;}
.p20{	padding:20px;}
.p25{	padding:25px;}
.p30{	padding:30px;}
.p35{	padding:35px;}
.p40{	padding:40px;}
.p45{	padding:45px;}
.p50{	padding:50px;}
.p55{	padding:55px;}
.p60{	padding:60px;}
.p65{	padding:65px;}
.p70{	padding:70px;}
.p75{	padding:75px;}
.p80{	padding:80px;}
.p85{	padding:85px;}
.p90{	padding:90px;}
/*--上下内边距--padding*/
.ptb0{	padding-top:0;padding-bottom:0;}
.ptb5{	padding-top:5px;padding-bottom:5px;}
.ptb10{	padding-top:10px;padding-bottom:10px;}
.ptb15{	padding-top:15px;padding-bottom:15px;}
.ptb20{	padding-top:20px;padding-bottom:20px;}
.ptb25{	padding-top:25px;padding-bottom:25px;}
.ptb30{	padding-top:30px;padding-bottom:30px;}
.ptb35{	padding-top:35px;padding-bottom:35px;}
.ptb40{	padding-top:40px;padding-bottom:40px;}
.ptb45{	padding-top:45px;padding-bottom:45px;}
.ptb50{	padding-top:50px;padding-bottom:50px;}
.ptb55{	padding-top:55px;padding-bottom:55px;}
.ptb60{	padding-top:60px;padding-bottom:60px;}
.ptb65{	padding-top:65px;padding-bottom:65px;}
.ptb70{	padding-top:70px;padding-bottom:70px;}
.ptb75{	padding-top:75px;padding-bottom:75px;}
.ptb80{	padding-top:80px;padding-bottom:80px;}
.ptb85{	padding-top:85px;padding-bottom:85px;}
.ptb90{	padding-top:90px;padding-bottom:90px;}
/*--左右内边距--padding*/
.plr0{	padding-left:0;padding-right:0;}
.plr5{	padding-left:5px;padding-right:5px;}
.plr10{	padding-left:10px;padding-right:10px;}
.plr15{	padding-left:15px;padding-right:15px;}
.plr20{	padding-left:20px;padding-right:20px;}
.plr25{	padding-left:25px;padding-right:25px;}
.plr30{	padding-left:30px;padding-right:30px;}
.plr35{	padding-left:35px;padding-right:35px;}
.plr40{	padding-left:40px;padding-right:40px;}
.plr45{	padding-left:45px;padding-right:45px;}
.plr50{	padding-left:50px;padding-right:50px;}
.plr55{	padding-left:55px;padding-right:55px;}
.plr60{	padding-left:60px;padding-right:60px;}
.plr65{	padding-left:65px;padding-right:65px;}
.plr70{	padding-left:70px;padding-right:70px;}
.plr75{	padding-left:75px;padding-right:75px;}
.plr80{	padding-left:80px;padding-right:80px;}
.plr85{	padding-left:85px;padding-right:85px;}
.plr90{	padding-left:90px;padding-right:90px;}
.plr-15{	padding-left:-15px;padding-right:-15px;}
/*--上内边距--padding-top*/
.pt0{	padding-top:0;}
.pt5{	padding-top:5px;}
.pt10{	padding-top:10px;}
.pt15{	padding-top:15px;}
.pt20{	padding-top:20px;}
.pt25{	padding-top:25px;}
.pt30{	padding-top:30px;}
.pt35{	padding-top:35px;}
.pt40{	padding-top:40px;}
.pt45{	padding-top:45px;}
.pt50{	padding-top:50px;}
.pt55{	padding-top:55px;}
.pt60{	padding-top:60px;}
.pt65{	padding-top:65px;}
.pt70{	padding-top:70px;}
.pt75{	padding-top:75px;}
.pt80{	padding-top:80px;}
.pt85{	padding-top:85px;}
.pt90{	padding-top:90px;}
/*--右内边距--padding-right*/
.pr0{	padding-right:0;}
.pr5{	padding-right:5px;}
.pr10{	padding-right:10px;}
.pr15{	padding-right:15px;}
.pr20{	padding-right:20px;}
.pr25{	padding-right:25px;}
.pr30{	padding-right:30px;}
.pr35{	padding-right:35px;}
.pr40{	padding-right:40px;}
.pr45{	padding-right:45px;}
.pr50{	padding-right:50px;}
.pr55{	padding-right:55px;}
.pr60{	padding-right:60px;}
.pr65{	padding-right:65px;}
.pr70{	padding-right:70px;}
.pr75{	padding-right:75px;}
.pr80{	padding-right:80px;}
.pr85{	padding-right:85px;}
.pr90{	padding-right:90px;}
/*--下内边距--padding-bottom*/
.pb0{	padding-bottom:0;}
.pb5{	padding-bottom:5px;}
.pb10{	padding-bottom:10px;}
.pb15{	padding-bottom:15px;}
.pb20{	padding-bottom:20px;}
.pb25{	padding-bottom:25px;}
.pb30{	padding-bottom:30px;}
.pb35{	padding-bottom:35px;}
.pb40{	padding-bottom:40px;}
.pb45{	padding-bottom:45px;}
.pb50{	padding-bottom:50px;}
.pb55{	padding-bottom:55px;}
.pb60{	padding-bottom:60px;}
.pb65{	padding-bottom:65px;}
.pb70{	padding-bottom:70px;}
.pb75{	padding-bottom:75px;}
.pb80{	padding-bottom:80px;}
.pb85{	padding-bottom:85px;}
.pb90{	padding-bottom:90px;}
/*--左内边距--padding-left*/
.pl0{	padding-left:0;}
.pl5{	padding-left:5px;}
.pl10{	padding-left:10px;}
.pl15{	padding-left:15px;}
.pl20{	padding-left:20px;}
.pl25{	padding-left:25px;}
.pl30{	padding-left:30px;}
.pl35{	padding-left:35px;}
.pl40{	padding-left:40px;}
.pl45{	padding-left:45px;}
.pl50{	padding-left:50px;}
.pl55{	padding-left:55px;}
.pl60{	padding-left:60px;}
.pl65{	padding-left:65px;}
.pl70{	padding-left:70px;}
.pl75{	padding-left:75px;}
.pl80{	padding-left:80px;}
.pl85{	padding-left:85px;}
.pl90{	padding-left:90px;}

/*-------------------------------清除浮动clearfix---------------------------------*/
.clearfix::after {display: block;clear: both;content: "";}

/*-------------------------------显示--display---------------------------------*/
.dis-none {display:none;}
.d-inline {display:inline !important;}
.d-inline-block {display:inline-block !important;}
.d-block {display:block !important;}
.d-table {display:table !important;}
.d-table-row {display:table-row !important;}
.d-table-cell {display:table-cell !important;}
.d-flex {display:-ms-flexbox !important;display:flex !important;}/*结合弹性盒子*/
.d-inline-flex {display:-ms-inline-flexbox !important;display:inline-flex !important;}

/*-------------------------------overflow---------------------------------*/
.overflow-auto {overflow:auto !important;}
.overflow-hidden {overflow:hidden !important;}

/*-------------------------------position---------------------------------*/
.position-s {position:static !important;}
.position-r {position:relative !important;}
.position-a {position:absolute !important;}
.position-f {position:fixed !important;}
.position-sticky {position:-webkit-sticky !important;position:sticky !important;}/*粘性位置*/
.fixed-top {position:fixed;top:0;right:0;left:0;z-index:1030;}
.fixed-bottom {position:fixed;right:0;bottom:0;left:0;z-index:1030;}

/*-------------------------------文字对齐方式---------------------------------*/
.textalign-c{text-align:center;}
.textalign-l{text-align:left;}
.textalign-r{text-align:right;}
.textalign-f{text-align:justify;}/*两端对齐*/

/*-------------------------------文字常用颜色值---------------------------------*/
.text-black{color:#000;}
.text-gray-3{color:#333;}
.text-gray-6{color:#666;}
.text-gray-9{color:#999;}
.text-gray-a{color:#aaa;}
.text-gray-b{color:#bbb;}
.text-gray-c{color:#ccc;}
.text-gray-e{color:#eee;}
.text-white{color:#fff;}
.text-red{color:#ff0000;}
.text-yello{color:#ffff00;}
.text-orange{color:#ff9900;}
.text-orange-d{color:#ff6600;}/*橘红色*/
.text-blue{color:#0094ff;}/*天蓝色*/
.text-green{color:#339933;}/*森林绿*/
.text-wood{color:#deb887;}/*实木色*/

/*-------------------------------背景常用色---------------------------------*/
.bgc-black{background-color:#000;}
.bgc-white{background-color:#fff;}
.bgc-gray-e{background-color:#eee;}/*灰色背景*/
.bgc-gray-de{background-color:#dedede;}/*de灰色背景*/
.bgc-gray-f4{background-color:#f4f4f4;}/*浅灰色灰色背景*/
.bgc-gray-f46{background-color:#f4f4f6;}/*偏蓝浅灰色灰色背景*/
.bgc-gray-f46{background-color:#f4f4f6;}/*偏蓝浅灰色灰色背景*/
.bgc-bluegray{background-color:#172433;}/*深蓝灰色背景-更多使用于页脚*/
.bgc-bluegray-00{background-color:#001328;}/*深蓝灰色接近黑色背景-更多使用于页脚*/
.bgopc-black-03{background-color:rdb(0,0,0,0.3);}/*黑色背景透明度0.3*/
.bgopc-black-05{background-color:rdb(0,0,0,0.5);}
.bgopc-black-07{background-color:rdb(0,0,0,0.7);}
.bgopc-white-03{background-color:rdb(255,255,255,0.3);}/*白色背景透明度0.3*/
.bgopc-white-05{background-color:rdb(255,255,255,0.5);}
.bgopc-white-07{background-color:rdb(255,255,255,0.7);}

/*-------------------------------常用边框 ---------------------------------*/
/*-------------------------------常用边框 ---------------------------------*/
.border-no{border:none;}
.border{border:1px #eee solid;}
.border-top{border-top:1px #eee solid;}
.border-right{border-right:1px #eee solid;}
.border-bottom{border-bottom:1px #eee solid;}
.border-left{border-left:1px #eee solid;}

/*-------------------------------常用圆角 ---------------------------------*/
.radius3{border-radius:3px;}
.radius5{border-radius:5px;}
.radius6{border-radius:6px;}
.radius8{border-radius:8px;}
.radius10{border-radius:10px;}
.radius15{border-radius:15px;}
.radius20{border-radius:20px;}
.radius50x{border-radius:50%;}

/*-------------------------------滤镜 ---------------------------------*/
  /*--动感模糊*/
.blur{
	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	-o-filter: blur(5px);
	-ms-filter: blur(5px);
	filter: blur(5px); 
}


/*-------------------------------常用阴影 ---------------------------------*/
.boxshadow{box-shadow:0 0 6px #000;}
/*-------------------------------常用z-index ---------------------------------*/
.z-index-9{z-index:-9;}
.z-index-99{z-index:-99;}
.z-index-999{z-index:-999;}
.z-index-9999{z-index:-9999;}
.z-index-99999{z-index:-99999;}
.z-index9{z-index:9;}
.z-index99{z-index:99;}
.z-index999{z-index:999;}
.z-index9999{z-index:9999;}
.z-index99999{z-index:99999;}

/************************************************************************/

/*ps端页头*/
.header-pc{
	background:#fff;
}
.logo img{
	height:56px;
}
.header-logo{
	display:flex;
	justify-content:space-between;
	align-items:center;
	padding-top:25px;
	padding-bottom:25px;
}
.logo{
	display:flex;
	justify-content:flex-start;
	align-items:center;
}
.logotel{
	position:relative;
	color:#d81817;
	padding-left:50px;
	margin-left:25px;
	border-left:1px #dedede solid;
}
.logotel i.iconfont{
	font-size:32px;
	position:absolute;
	left:10px;
	top:50%;
	transform:translateY(-50%);
}
.logotel i:last-child{
	font-size:28px;
	line-height:32px;
	font-weight:600;
	display:block;
}
.search input{
	display: block;
    font-size: 15px;
    border: none;
    width: 330px;
    float: left;
    background: #eeeeee;
    color: #666;
    height: 46px;
    line-height: 46px;
    text-indent: 10px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}
.search button{
	display: block;
    float: right;
    letter-spacing: 5px;
    width: 80px;
    font-size: 16px;
    background: #d81817;
    color: #fff;
    border: none;
    height: 46px;
    line-height: 46px;
    cursor: pointer;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
	margin-left:5px;
}
.search button i{
	font-size:20px;
}
input::-webkit-input-placeholder {      /* WebKit browsers */
    color: #bbb;
}
input:-moz-placeholder {                /* Mozilla Firefox 4 to 18 */
    color: #bbb;
}
input::-moz-placeholder {               /* Mozilla Firefox 19+ */
    color: #bbb;
}
input:-ms-input-placeholder {           /* Internet Explorer 10+ */
    color: #bbb;
}
/*--登录注册*/


/*导航*/
.menunav{
	position:relative;
	z-index:99;
	width:100%;
	height:55px;
	background:#d39b2e;
}
.menunav .navul{
	display:flex;
	justify-content:flex-start;
	text-align:center;
	/*flex-wrap:wrap;*/
}
.menunav .navul > li{
	position:relative;
	z-index:99;
}
.menunav .navul > li > a{
	display:block;
	line-height:55px;
	height:55px;
	padding-left:25px;
	padding-right:25px;
	font-size:16px;
	color:#fff;
	min-width:100px;
	position:relative;
	z-index:99;
	white-space:nowrap;
}
.menunav .navul > li.current-menu-item > a, .menunav .navul > li:hover > a{
	background:rgba(0,0,0,0.2);
}
.menunav .navul > li.menu-item-has-children a i{
	font-size:12px;
	position:absolute;
	top:0;
	right:-2;
	transition: all 0.25s;
}
.menunav .navul > li.menu-item-has-children:hover a i{
	 -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.menunav .sub-menu{
	position:absolute;
	left:50%;
	transform:translateX(-50%);
	box-shadow:3px 3px 6px rgba(0,0,0,0.16);
	padding:5px;
	transition:0.5s;
	-webkit-transition:0.5s;
	background:#fff;
	z-index:32;	
	display:none;
	opacity:0;
}
 .menunav .navul > li:hover .sub-menu{
	 top:55px;
	display:block;
	opacity:1;
 }
.menunav .sub-menu a{
	display:block;
	white-space:nowrap;
	color:#888;
	line-height:40px;
	height:40px;
	text-align:center;
	min-width:140px;
	font-size:15px;
	border-bottom:1px #dedede dotted;
	transition:0.3s;
	-webkit-transition:0.3s;
}
.menunav .sub-menu li:last-child a{
	border-bottom:none;
}
.menunav .sub-menu li:hover a{
	background:#f4f4f4;
	color:#e53e40;
}
/*首页板块*/
.homebody{
	
	padding-left:120px;
	position:relative;
}
.homebkctn{
	display:flex;
	justify-content:space-between;
	align-items:flex-start;
}
/*banner*/
.banner{
	position:relative;
	 display:flex;
	 justify-content:space-between;
	 align-items:stretch;
	 margin-bottom:20px;
	 /*height:600px;*/
 }
 .banner img{
	 width:100%;
	 height:auto;
 }

.banner .swiper-container{
    --swiper-theme-color: #fff;/* 设置Swiper风格 */
    --swiper-navigation-color: #aaa;/* 单独设置按钮颜色 */
    --swiper-navigation-size: 32px;/* 设置按钮大小 */
  }

.banner .swiper-pagination-bullet{
	width:10px;
	height:10px;
}
.banner  .swiper-container-horizontal > .swiper-pagination-bullets {
	bottom: 120px;  
  }
.bannerform{
	position:absolute;
	top:50%;
	right:8%;
	z-index:99;
	transform: translateY(-60%);
} 
.bannerform > div{
    	background:#fff;
	width:300px;
	padding:40px 20px;
	border-radius:10px;
	margin: 0;
	box-shadow: 0 0 5px rgb(0 0 0 / 20%);
}
.bannerform h3{
    font-size: 26px;
    color: #d81817;
	text-align:center;
	position:relative;
	margin-bottom:30px;
	letter-spacing: 1px;
}
.bannerform h3:before{
	content:"";
	position:absolute;
	top:50%;
	left:0;
	width:40px;
	height:2px;
	background: linear-gradient(270deg, rgb(216 24 23) 30%, rgb(230,31,25,0) 100%);
}
 .bannerform h3:after{
	content:"";
	position:absolute;
	top:50%;
	right:0;
	width:40px;
	height:2px;
	background: linear-gradient(90deg, rgb(216 24 23) 30%, rgb(230,31,25,0) 100%);
} 
.bannerform input{
	box-sizing: border-box;
    border: 1px solid;
	width:100%;
    height: 42px;
    padding-left: 18px;
    margin-bottom: 20px;
    border-radius: 5px;
    outline: medium;
    font-size: 16px;
    color: #bfbfbf;
    letter-spacing: 1px;
	
}
.yzm{
	position:relative;
	padding-right:110px;
}  
 .yzm button{
	 position:absolute;
	 top:0;
	 right:0;
	 display:block;
	 height:100%;
	 width:130px;
	 background:#dfa22c;
	 border-radius:5px;
	 text-align:center;
	 line-height:42px;
	 color:#fff;
	 border:none;
 }
.yzm input{
	margin-bottom:0;
}  
.bannerform-btn{
	font-size:16px;
	display:block;
	 height:42px;
	 line-height:42px;
	 width:100%;
	 background:#d81817;
	 border-radius:5px;
	 text-align:center;
	 color:#fff;
	 border:none;
	 margin-top:20px;
}
.bannerform p{
	font-size:12px;
	color:#bbb;
	margin-top:20px;
}

/*首页列表*/
.homebk{
	padding-top:70px;
	padding-bottom:30px;
}
.homebk-title {
	margin-bottom:15px;
	position:relative;
	text-align:center;
	padding-bottom:15px;
}
.homebk-title h2{
	font-size:34px;
	color:#333;
	position:relative;
	z-index:99;
}
.homebk-title h2 a{
	font-size:34px;
	color:#333;
}
.homebk-title p{
	font-size:16px;
	color:#999;
	margin-top:10px;
}
.homebk-title:before{
	content:"";
	position:absolute;
	bottom:0;
	left:50%;
	transform:translateX(-50%);
	width:50px;
	height:3px;
	background:#e53e40;
}
.homebk1-ctn {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
}
/*首页列表一*/
.homebk-1{
	background:#fff;
	box-shadow:0 0 10px rgba(0,0,0,0.2);
	margin-top:-100px;
	position:relative;
	z-index:99;
	padding:50px 0;
	display:flex;
	justify-content:space-between;
	align-items:stretch;
	border-radius:8px;
	margin-bottom:50px;
}
.homebk1-item{
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
	width:25%;
	text-align:center;
}
.homebk1-item img{
	margin-bottom:10px;
}
.homebk1-item h3{
	margin-bottom:7px;
	font-weight:600;
}
.homebk1-item p{
	color:#999;
	font-size:16px;
}
.homebk-3{
	margin-bottom:60px;
}
.homebk3-ctn {
    display: flex;
    justify-content:space-between;
    align-items: stretch;
}
.homebk3-item{
	width:33.3%;
	height:410px;
	text-align:center;
	position:relative;
	transition:0.3s;
	-webkit-transition:0.3s;
}
.homebk3-item a{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
	transition:0.3s;
	-webkit-transition:0.3s;
}
.homebk3-item a img{
	border:1px #fff solid;
	border-radius:50%;
	padding:20px;
	height:0;
	transition:0.3s;
	-webkit-transition:0.3s;
	opacity:0;
}
.homebk3-item h3{
	color:#fff;
	font-size:26px;
	margin-top:25px;
	margin-bottom:15px;
}
.homebk3-item p{
	font-size:18px;
	color:rgba(255,255,255,0.8);
}
.homebk3-item > img{
	width:100%;
}
.homebk3-item:hover{
	transform:scale(1.1,1.1);
	-webkit-transform:scale(1.1,1.1);
	z-index:99;
	box-shadow:0 0 10px rgba(0,0,0,0.3);
}
.homebk3-item a:hover{
	background:#dfa22c;
}
.homebk3-item a:hover img{
	height:92px;
	opacity:1;
}
.homebk-4{
	background-image:url(../images/hk4bg.jpg);
	background-position:center;
	background-size:cover;
	background-repeat:no-repeat;
}
.homebk4-item{
	height:400px;
	display:flex;
	justify-content:space-between;
	align-items:stretch;
	background:#fff;
	margin-bottom:80px;
}
.homebk4-l {
	position:relative;
	width:50%;
	height:100%;
	background-position:center;
	background-size:cover;
	background-repeat:no-repeat;
	color: #fff;
}
.homebk4-l:before{
	content:"";
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.4);
}
.homebk4-ltt{
	display: block;
    width: 255px;
    height: 294px;
    background: linear-gradient(0, #949c15 30%, #cfe046 100%);
    padding: 33px 25px;
    position: absolute;
    z-index: 2;
    top: -34px;
    left: -25px; 
}
.homebk4-item:first-child .homebk4-ltt{
	 background: linear-gradient(0, #af8900 30%, #f5d42d 100%);
}
.homebk4-item:last-child .homebk4-ltt{
	 background: linear-gradient(0, #875300 30%, #b68830  100%);
}
.homebk4-ltt h3{
	font-size:32px;
	margin-bottom:5px;
}
.homebk4-ltt a{
	position:absolute;
	right:30px;
	bottom:50px;
	display: block;
    width: 120px;
    height: 35px;
    line-height: 35px;
    border: #fff 1px solid;
    border-radius: 25px;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    color: #fff;
    text-align: center;
    font-size: 14px;
}
.homebk4-ltx{
	width:50%;
	position:absolute;
	bottom:50px;
	right:30px;
}
.homebk4-ltx p{
	font-size:16px;
}
.homebk4-ltx p:first-child{
	font-size: 30px;
    font-weight: normal;
    border-bottom: #fff 1px solid;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.homebk4-r{
	width:50%;
	display:flex;
	justify-content:space-between;
	align-items:stretch;
	flex-wrap:wrap;
}
.homebk4-r-item{
	position:relative;
	width:50%;
	padding:30px;
	padding-right:120px;
	border-left:1px #dedede solid;
	border-bottom:1px #dedede solid;
}
.homebk4-r-item img{
	position: absolute;
    right: 0;
    bottom: 0;
    width: 150px;
}
.homebk4-r-item a{
	color:#333;
}
.homebk4-r-item h3{
	font-weight:600;
	margin-bottom:10px;
}
.homebk4-r-item p{
	word-break:break-all;
	display:-webkit-box;
	-webkit-line-clamp:3;
	-webkit-box-orient:vertical;
	overflow:hidden;
	text-overflow:ellipsis;
	color:#999;
}
.homebk6-swiper{
	height:380px;


}
.homebk6-swiper .swiper-slide{
	overflow:hidden;
	width:25%;	
	padding:20px;
	height:100%;
}
.homebk6-swiper .homebk6-slide{
	width:100%;
	height:100%;
	position:relative;
	box-shadow:0 0 6px rgba(0,0,0,0.2);
	border-radius:8px;
	overflow:hidden;
	padding:10px;
}

.homebk6-ewm{
	position:absolute;
	top:0;
	left:0;
	background:#fff;
	padding:20px;
	height:100%;
	width:100%;
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
	opacity:0;
	transition:0.3s;
	-webkit-transition:0.3s;
}
.homebk6-rwimg{
	width:100%;
	height:100%;
	overflow:hidden;
	
}
.homebk6-rwimg img{
	width:100%;
}
.homebk6-ewm img{
	width:auto;
	height:auto;
	max-width:100%;
	max-height:100%;
}
.homebk6-ewm p{
	font-size:14px;
	color:#bbb;
}
.homebk6-swiper .homebk6-slide:hover .homebk6-ewm{
	opacity:1;
}
.homebk6-swiper .swiper-button-prev,.homebk6-swiper  .swiper-button-next{
	background:rgba(0,0,0,0.3);
	padding:5px;
	display:block;
	width:30px;
	height:46px;
}
.homebk6-swiper {
    --swiper-theme-color: #999;/* 设置Swiper风格 */
    --swiper-navigation-color: #666;/* 单独设置按钮颜色 */
    --swiper-navigation-size: 32px;/* 设置按钮大小 */
  }
.homebk7-ctn{
	display:flex;
	justify-content:space-between;
	align-items:stretch;
	flex-wrap:wrap;
}
.homebk7-item{
	width:48%;
	height:240px;
	padding:15px;	
	background:#fff;
	border-radius:8px;
	margin-bottom:40px;
}

.homebk7-zuche{
	width:30%;
	height:500px;
	padding:15px;	
	background:#fff;
	border-radius:8px;
	margin-bottom:40px;
}

.homebk7-item a{
	display:flex;
	justify-content:space-between;
	align-items:stretch;
}
.homebk7-img {
	height:210px;
	width:210px;
	
}
.homebk7-img img{
	width:100%;
	height:100%;
}
.homebk7-tt{
	width:57.3%;
	
}
.homebk7-tt h3{
	margin-bottom:10px;
	font-weight:600;
	padding-top:10px;
	padding-bottom:10px;
	color:#333;
	 white-space: nowrap; 
  width: 100%; 
  overflow: hidden;
  text-overflow:ellipsis;
}



.homebk7-tt p{
	color:#999;
	line-height:1.5;
	word-break:break-all;
	display:-webkit-box;
	-webkit-line-clamp:4;
	-webkit-box-orient:vertical;
	overflow:hidden;
}
.homebk-7 .homebk-title h2 a{
	color:#fff;
}
.homebk-7 .alseemore{
	display:block;
	height:42px;
	width:280px;
	border:1px #e53e40  solid;
	color:#e53e40 ;
	text-align:center;
	line-height:42px;
	margin:20px auto;
	font-size:16px;
	border-radius:5px;
}
/*******************/
.homebk-5{
	background:#f4f4f4;
}
.homebk5-title{
	position:relative;
	padding-bottom:15px;
	border-bottom:1px #dedede solid;
}
.homebk5-title h2 a{
	color:#333;
	font-size:26px;
}
.homebk5-ctn{
	display:flex;
	justify-content:space-between;
	align-items:stretch;
	flex-wrap:wrap;
} 
.homebk5-title .morenews{
	position:absolute;
	right:0;
	top:50%;
	transform:translateY(-50%);
	color:#aaa;
	
}
.homebk5-l,.homebk5-r{
	background:#fff;
	padding:15px 20px;
	width:48%;
}
.homebk5-l-ctn ul{
	padding-top:10px;
	margin-bottom:20px;
}
.homebk5-l-ctn ul h3{
	margin-bottom:10px;
}
.homebk5-l-ctn ul h3 a{
	font-size:17px;
	font-weight:600;
	color:#333;
	
}
.homebk5-l-ctn ul li{
	margin-bottom:10px;
}
.homebk5-l-ctn ul li a{
	display:inline-block;
	padding:8px;
	border:1px #dedede solid;
	border-radius:4px;
	font-size:15px;
	color:#777;
	white-space: nowrap; 
	overflow: hidden;
	text-overflow:ellipsis;
	max-width: 100%; 
}
.homebk5-r-ctn ul{
	padding-top:10px;
}
.homebk5-r-ctn ul li{
	position:relative;
	margin-bottom:10px;
	padding-right:80px;
}
.homebk5-r-ctn ul li a{
	display:inline-block;
	font-size:15px;
	color:#777;
	padding:5px;
	padding-left:15px;
	background:url(../images/list.gif) no-repeat left center;
	white-space: nowrap; 
	width: 100%; 
	overflow: hidden;
	text-overflow:ellipsis;
}
.homebk5-r-ctn ul li .datetime{
	position:absolute;
	right:0;
	top:50%;
	transform:translateY(-50%);
	font-size:13px;
	color:#bbb;
}
/******homebk8*****/
.homebk8-title{
	text-align:center;
}
.homebk8-title h2{
	font-size:34px;
}
.homebk8-title h2 span{
	margin:0 10px;
}
.homebk8-title h2 span:last-child{
	color:#dfa22c;
}
.homebk8-ctn{
	display:flex;
	justify-content:space-between;
	align-items:stretch;
	position:relative;
}
.w-vs{
	position:relative;
	
}
.w-vsimg{
	position:absolute;
	top:0;
	left:50%;
	margin-left:-100px;
}
.w-vs-l{
	background:url(../images/homebk8bg1.png) no-repeat left center;
	width:46%;
	text-align:right;
	padding:40px;
	border-radius:15px 0 0 15px;
}
.w-vs-r{
	background:url(../images/homebk8bg2.png) no-repeat right center;
	width:46%;
	text-align:left;
	padding:40px;
	color:#fff;
	border-radius:0 15px 15px 0;
}
.w-vs-litem{
	margin-bottom:40px;
	padding-right:60px;
	position:relative;
}
.w-vs-litem h5{
	color:#bbb;
	margin-bottom:6px;
}
.w-vs-litem p{
	font-size:15px;
	color:#666;
}
.w-vs-litem i{
	font-size:30px;
	color:#bbb;
	position:absolute;
	right:20px;
	top:0;
}
.w-vs-ritem{
	margin-bottom:40px;
	padding-left:60px;
	position:relative;

}
.w-vs-ritem h5{
	color:#fff;
	margin-bottom:6px;
}
.w-vs-ritem p{
	font-size:15px;
	color:#fff;
}
.w-vs-ritem i{
	font-size:30px;
	color:#fff;
	position:absolute;
	left:20px;
	top:0;
}
/**/
.w-youshi{
	background:url(../images/ys2.png) no-repeat center;
	background-size:420px 200px;
	height:300px;
	position:relative;
}
.w-ysitem{
		background:url(../images/ysbg.png) no-repeat center;
	background-size:380px 100px;
	height:100px;
	width:380px;
	position:absolute;
	padding:20px 60px;
}
.w-ysitem2{
	background:url(../images/ysbg2.png) no-repeat center;
	background-size:380px 100px;
	height:100px;
	width:380px;
	position:absolute;
	padding:20px 60px;
}
.w-ysitem h4,.w-ysitem2 h4 {
	font-size:20px;
	color:#666;
}
.w-ysitem p,.w-ysitem2 p{
	color:#bbb;
	margin-top:6px;
}
.w-ysitem span,.w-ysitem2 span{
display:block;
	position:absolute;
	top:17px;
	
	color:#0095ff;
}
.w-ysitem span{
	left:17px;
}
.w-ysitem2 span{
	right:17px;
}
.w-ysitem span i,.w-ysitem2 span i{
	font-size:36px;
}
.w-ysitem2{
	text-align:right;
}












/*侧边栏*/
.sidebar{
	width:28%;
}
.w-sidebar{
	/*border:1px #eee solid;*/
	margin-bottom:20px;
	background:#fff;
	border-radius:8px;
}
.w-sidr-header{
	position:relative;
}
.w-sidr-header h3{
	font-size:18px;
	font-weight:600;
	line-height:50px;
	padding-left:15px;
	padding-right:15px;
}
.w-sidr-body{
	padding:0 15px 15px 15px;
}
.w-sidr-litag{
	margin-bottom: 15px;
}
.w-sidr-litag ul{
	display:flex;
	justify-content:flex-start;
	align-items:center;
	flex-wrap:wrap;
}
.w-sidr-litag ul li{
	width:33.3%;
	text-align:center;
	padding:5px;
}
.w-sidr-litag  li a{
	display:block;
	width:100%;
	height:38px;
	line-height:38px;
	/*color:#333;*/
	border:1px #dedede solid;
	border-radius:5px;
	padding-left:5px;
	padding-right:5px;
	overflow:hidden;
}
.w-sidr-li li a {
    background: url(../images/list.gif) no-repeat 5px center;
    padding: 0 0 0 15px;
    color: #333;
    border-bottom: dotted 1px #eee;
    overflow: hidden;
    display: block;
    font-size: 14px;
    height: 46px;
    line-height: 46px;
	word-break:keep-all;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis; 
}
.w-sidr-header a{
	position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 14px;
    color: #ccc;
}
.w-sdimg a{
	padding:15px 0;
	display:flex;
	justify-content:space-between;
	border-bottom: solid 1px #eee;
    overflow: hidden;
	align-items: stretch;
}

.w-sdimg:last-child a{
	border:none;
}

.w-sdimg-img{
	width:28%;
	height:60px;
	overflow:hidden;
}
.w-sdimg-img img{
	width:100%;
	height:100%;
	transition:0.3s;	
	-webkit-transition:0.3s;	
}
.w-sdimg:hover img{
	transform:scale(1.1,1.1);
}
.w-sdimg-wp{
	width:75%;	
	padding-left:10px;
	position:relative;
}
.w-sdimg-wp h4{
	display: block;
    color: #333;
	font-size:14px;
	line-height:18px;
	height:36px;
	overflow:hidden;
	transition:0.2s;	
	-webkit-transition:0.2s;
}
.w-sdimg-wp .w-lswp-bottom{
	left:10px;
	bottom:0;
	height:auto;
}
.w-sdimg-wp .w-lswp-bottom span{
	margin-left:0;
	margin-right:6px;
}
.w-sdimg-wp .w-lswp-bottom span i{
	margin-right:3px;
}
.w-lswp-bottom{
	font-size:12px;
	color:#999;
	position:absolute;
	left:20px;
	bottom:0;
	height: 30px;
}
.w-lswp-bottom span{
	margin-right:15px;
	line-height:16px;
}
.w-lswp-bottom span i{
	font-size:14px;
	margin-right:5px;
}

.w-sidr-imgli2{
	display:flex;
	justify-content:space-between;
	align-items:stretch;
	flex-wrap:wrap;
}
.w-sdimg2{
	width:48%;
	margin-bottom:15px;
}
.w-sdimg-img2{
	width:100%;
	height:90px;
	overflow:hidden;
}
.w-sdimg-img2 img{
	width:100%;
	height:100%;
	transition:0.3s;	
	-webkit-transition:0.3s;
}
.w-sdimg2:hover img{
	transform:scale(1.1,1.1);
}
.w-sdimg2 h4{
	font-size: 14px;
    color: #333;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	height:40px;
	line-height:40px;
	transition:0.2s;	
	-webkit-transition:0.2s;
}
.onebigimg{
	display:block;
	height:200px;
	position:relative;
	overflow:hidden;
}
.onebigimg img{
	width:100%;
	height:100%;
}
.onebigimg h3{
	position:absolute;
	font-size:14px;
	color:#fff;
	bottom:0;
	left:0;
	right:0;
	background:rgba(0,0,0,0.3);
	padding:0 15px;
	margin:0;
	word-break:keep-all;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis; 
	height:40px;
	line-height:40px;
}
.w-swiper{
	height:210px;
}
.w-swiper img{
	width:100%;
	height:100%;
}
 .swiper-morimg{
    --swiper-theme-color: #f4f4f4;/* 设置分页器风格 */
    --swiper-navigation-color: #f4f4f4;/* 单独设置按钮颜色 */
    --swiper-navigation-size: 30px;/* 设置按钮大小 */
  }
/*页脚*/
footer{
	background:#d4bf5e;

}
.footer1{
	/*display:flex;
	justify-content:flex-start;
	align-items:stretch;
	flex-wrap:wrap;*/
	background-image:url(../images/footerbg.png);
	background-repeat:no-repeat;
	background-position:center bottom;
	padding:50px 15px 100px;
	
}
.footer1 .container{
	display:flex;
	justify-content:flex-start;
	align-items:stretch;
	
}
.footer1-left{
	display:flex;
	justify-content:flex-start;
	align-items:flex-start;
	flex-wrap:wrap;
	width:70%;
}
.footer1-left  h3{
	width:100%;
	color:#fff;
	padding-left:10px;
	font-size:22px;
	line-height:36px;
}
.footer1-left a{
	display:block;
	width:20%;
	padding:10px;	
}
.footer1-left a img{
	width:100%;
	height:62px;
}
.footer1-right{
	width:30%;
	padding-top:50px;
}
.footer-link{
	width:20%;
	color:#fff;
}
.footer-link a{
	color:#fff;
}
.footer1-right{
	text-align:center;
	color:#fff;
}
.footer1-right img{
	width:140px;
	height:140px;
	margin-bottom:10px;
}
.footer-tel{
	white-space: nowrap; 
	font-size:38px;
	color:#fff;
	font-family: Impact;
	width:30%;
	text-align:center;
}
.footer-tel i{
	font-size:30px;
	margin-right:5px;
}

.footer-address{
	width:70%;
	margin-bottom:30px;
	color:#fff;
	opacity:0.8;
}
.footer-address p{
	margin-bottom:10px;
}
.footer-address p a{
	color:#fff;
}
.footer-link p{
	font-size:16px;
	margin-bottom:10px;
}
.footer-link a{
	line-height:2;
	opacity:0.8;
}
.footer-bottom{
	padding-bottom:30px;
	text-align:center;
	color:#fff;
	opacity:0.6;
	font-size:13px;
}
.friendlink a{
	color:#fff;
	padding:0 10px;
	font-size:13px;
	margin-bottom:6px;
	display:inline-block;
}
.friendlink a:hover{
	color:#52caf7;
}
/*侧边客服咨询*/
.customer-f{
	position:relative;
	position:fixed;
	top:354px;
	right:0;
	width:60px;
	z-index:99;
}
.customer{

	background:#d81817;
	width:60px;
	color:#fff;
	border-radius:5px 0 0 5px;
}
.customer div{
	width:100%;
	height:60px;
	line-height:60px;
	text-align:center;
	border-top:1px #fff solid;
	position:relative;
	overflow:hidden;
}
.customer div:first-child{
	border:none;
}
.customer div a{
	color:#fff;
	display:block;
	position:absolute;
	top:0;
	left:0;
	height:100px;
	transition: 0.3s;
    -webkit-transition: 0.3s; /* Safari */
}
.customer div span{
	display:block;
	height:60px;
	width:100%;
	padding:5px 10px;
	line-height:1.2;
	font-size:15px;
}
.customer div:hover a{
	top:-60px;
	color:#fff!important;
}
.QZ-up {
/*    width:100%;
    height: 60px;*/
    cursor: pointer;
	text-align:center;
	line-height:60px;
}
.customer i{
	font-size:28px;
}
.QZ-up i{
	font-size:24px;
}

.customer-f .customer-ewm{
	background:#d81817;
	border-radius:8px;
	padding:5px;	
	position:absolute;
	left:-120px;
	top:-25px;
	width:110px;
	height:110px;
	box-shadow:0 0 3px rgba(0,0,0,0.1);
	opacity:0;
	transition: 0.3s;
    -webkit-transition: 0.3s; /* Safari */
	z-index:99999;
}

.customer-f .customer-ewm img{
	width:100%;
	height:100%;
}
.customer-f .customer-ewm:before{
	content:"";
	width:0;
	height:0;
	border-left:10px #dfa22c solid;
	border-top:10px transparent solid;
	border-bottom:10px transparent solid;
	position:absolute;
	right:-10px;
	top:50%;
	margin-top:-5px;
	
}
.customer-weixin:hover .customer-ewm{
	display:block;
}
	
	
/*************************************内页*************************************/
.page{
	background:#f4f4f4;
}
.pagebanner	{
	position:relative;
	margin:0;

}
.pagebanner img{
	height:auto;
}
/**/
.anlipage{
	padding-top:30px;
	padding-bottom:50px;
}
.homebk7-item{
	position:relative;
	transition:0.2s;
	-webkit-transition:0.2s;
}
.homebk7-item:hover{
	box-shadow:0 0 10px rgba(0,0,0,0.2);
	
}
.listtag{
	position:absolute;
	left:250px;
	bottom:25px;
	color:#aaa;
	font-size:12px;
	display:flex;
	justify-content:flex-start;
	align-items:center;
}
.listtag a{
	display:block;
	padding:3px 8px;
	border:1px #dedede solid;
	color:#aaa;
	font-size:12px;
	margin-right:15px;
	border-radius:2px;
	transition:0.2s;
	-webkit-transition:0.2s;
}
.listtag a:hover{
	border:1px #dfa22c solid;
	color:#dfa22c;
}
/*面包屑*/
.wbreadcrumb{
	display:flex;
	 flex-wrap: nowrap;
	 align-items: baseline;
	color: #999;
    font-size: 14px;
	margin-bottom:30px;
	border-bottom:1px #dedede dotted;
}
.wbreadcrumb li{
    padding-left: 10px;
    padding-right: 10px;
}
.wbreadcrumb li a{
	color: #999;
}
/*分页*/
.w-fylink{
	display:flex;
	flex-wrap: nowrap ;
	justify-content:center;
	margin-top:40px;
}
.w-fylink a{
	display:block;
	border: 1px #dedede solid;
	border-radius:3px;
	padding: 10px 15px;
	margin-left:3px;
	color:#666 ;
	font-size:13px;
}
.w-fylink a.active{
	background-color: #dedede;
    color: #666;
    border: 1px #dedede solid;
}
.w-fylink a:hover{
	background:#eee;
	border: 1px #eee solid;
}
.w-fylink a i{
	font-size:12px;
}
.w-fylink a.active:hover{
	background-color: #eee;
    color: #fff;
}
/**********新闻************/
.newspage{
	display:flex;
	justify-content:space-between;
	align-items:flex-start;
}
.newspage-list{
	width:70%;
}
.newspage-list .homebk7-item{
	width:100%;
	height:auto;
	margin-bottom:30px;
}
.newspage-list .homebk7-img {
    height: 180px;
    width: 30%;
}
.newspage-list .listtag {
	left: 34%;
}
.newspage-list .homebk7-tt {
    width: 67%;
}
.newspage-list .homebk7-tt p{
	-webkit-line-clamp: 2;
}
.homebk7-item-noimg .homebk7-tt{
	width:100%;
	height:160px;
}
.homebk7-item-noimg  .listtag {
    left: 15px;
}
/**********产品************/
.pdpage-title {
	position:relative;
	padding-bottom:20px;
	/*border-bottom:1px #dedede solid;*/
	margin-bottom:40px;
	padding-left:20px;
}
.pdpage-title:before{
	content:"";
	position:absolute;
	top: 4px;
    left: 0;
    background: #dfa22c;
    width: 4px;
    height: 40px;
}
.pdpage-title h2{
	font-size:32px;
	position:relative;
	z-index:9;
}
.pdpage-title p{
	position:absolute;
	top:14%;
	left:20px;
	font-size:32px;
	color:#e0e0e0;
	letter-spacing:-0.5px;
}
.pdpage1-ctn{
	display:flex;
	justify-content:space-between;
	align-items:stretch;
}
.pdpage1-item{
	width:25%;
	text-align:center;

}
.pdpage1-item img{
	width:150px;
	height:150px;
	border-radius:50%;
	border:2px #dfa22c solid;
	transition:0.6s;
	-webkit-transition:0.6s;
	box-shadow:0 0 10px rgba(0,0,0,0.3);
}
.pdpage1-item h3{
	font-size:32px;
	margin-top:20px;
	margin-bottom:10px;
	
}
.pdpage1-item p{
	font-size:17px;
	color:#999;
}
.pdpage1-item:hover img{
	 -webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
}
.pdpage-2{
	background:#f4f4f4;
}
.pdpage2-item{
	width:48.5%;
	background:#fff;
	padding:15px;
	margin-bottom:20px;
}
.pdpage2-ctn{
	display:flex;
	justify-content:space-between;
	align-items:stretch;
	flex-wrap:wrap;
}
.pdpage2-item{
	font-size:24px;
	color:#999 ;
	display:flex;
	justify-content:flex-start;
	align-items:center;
	border-radius:8px;
}
.pdpage2-item img{
	margin-right:20px;
}
.pdpage2-item:hover{
	box-shadow:0 0 6px rgba(0,0,0,0.2);
}
.pdpage3-ctn{
	display:flex;
	justify-content:space-between;
	align-items:stretch;
}
.pdpage3-item{
	position:relative;
	text-align:center;
	font-size:22px;
	font-weight:600;
	width:20%;
}
.pdpage3-item img{
	margin-bottom:30px;
	
}
.pdpage3-item span{
	position: absolute;
    left: 0;
    bottom: 30px;
    font-size: 52px;
    color: #aaa;
    font-weight: 200;
}
.pdpage-4{
	background:#f4f4f4;
}
.pdpage4-ctn li{
	font-size:15px;
	color:#777;
	margin-bottom:20px;	
	padding:20px 40px;
	position:relative;
	background:#fff;
	border:1px #dedede solid;
	border-radius:5px;
}
.pdpage4-ctn li p{
	padding:16px;
	padding-left:45px;
	background:url(../images/wd-1.png) no-repeat left 11px;
	background-size:35px;
}
.pdpage4-ctn li p:last-child{
	background:url(../images/wd-2.png) no-repeat left 11px;
	background-size:35px;
}

.pdpage-5 .pdpage-title h2{
	color:#fff;
}
.pdpage-5 .pdpage-title p{
	opacity:0.4;
}
.pdpage5-ctn{
	display:flex;
	justify-content:space-between;
	align-items:center;
	flex-wrap:wrap;
}
.pdpage5-item{
	margin-bottom:40px;
	position:relative;
}
.pdpage5-item p{
	position:absolute;
	left:-5px;
	bottom:-5px;
	background:#dfa22c;
	color:#fff;
	font-size:18px;
	width:120px;
	text-align:center;
	text-align:center;
	line-height:38px;
}
.recom .homebk3-item {
    width: 32%;
    height: 210px;
}
.recom .homebk3-item > img{
	height:100%;
}
.recom .homebk3-item a:hover img {
    height: 60px;
    opacity: 1;
}
.recom .homebk3-item a img {
    padding: 5px;
}
.recom .homebk3-item:hover {
    transform: scale(1,1);
    -webkit-transform: scale(1,1);
}
/**********文章详情************/
.single{
	background:#fff;
	padding-left:40px;
	padding-right:40px;
	margin-bottom:30px;
}
.single-title{
	text-align: center;
    padding-top: 45px;
    padding-bottom: 35px;
    border-bottom: 1px #dedede dotted;
    margin-bottom: 20px;
}
.single-title h1 {
    margin-top: 0;
    font-size: 26px;
    line-height: 36px;
    color: #454545;
    margin-bottom: 20px;
}

.single-title-icon span {
	font-size:12px;
	color:#999;
	margin-right:10px;
}
.single-title-icon a {
	font-size:12px;
	color:#666;
	margin-right:10px;
}
.single-title-icon a:hover {
	color:#0094ff;
}
.single-title-icon i {
	font-size:13px;
	color:#999;
}
.single-ctn {
	font-size:16px;
	line-height:1.8;
	word-wrap:break-word;
	color:#555;
}
.single-ctn p {
	margin-bottom:16px;
	text-indent:0px;
}
.single-ctn img {
	width:50%;
	margin:20px auto;
	display:block;
}
blockquote:before {
    position: absolute;
    content: "";
    left: 30px;
    top: 22px;
	display:block;
	width:36px;
	height:36px;
	background:url(../images/yinghao.png) no-repeat center;
	background-size:cover;
}
blockquote{
    position: relative;
    padding: 30px 30px 30px 75px;
    background: #eee;
    border-left: 0;
    font-size: 16px;
    border-radius: 6px;
	margin-top:30px;
	margin-bottom:30px;
	color:#999;
}
.single-ctn p{
	margin-bottom:20px;
}
.single-ctn ul{
	padding-left:50px;
	margin-bottom:30px;
}
.single-ctn ul li{
	list-style-type:disc;
}
.single-ctn h2{
	font-size:20px;
	font-weight:600;
	border-bottom:1px #dedede solid;
	padding-bottom:10px;
	margin-bottom:15px;
	position:relative;
	margin-top:30px;
}
.single-ctn h2:before{
	content:"";
	width:40px;
	height:4px;
	background:#FF7200;
	position:absolute;
	left:0;
	bottom:-2px;
}
.single-ctn h3{
	font-size:18px;
	font-weight:600;
	margin-bottom:15px;
	margin-top:30px;
}
.single-ctn img{
	width:auto;
	height:auto;
	display:block;
	margin:30px auto;
	max-width:100%;
}
/*标签*/
.single-tag{
	font-size: 15px;
    color: #999;
	padding-top:20px;
	padding-bottom:10px;
	border-bottom:1px #dedede solid;
	margin-top:30px;
}
.single-tag a{
	display: inline-block;
    font-size: 13px;
    border:none;
	background:#eee;
    border-radius: 3px;
    color: #999;
    line-height: 20px;
    padding: 3px 8px;
    word-break: keep-all;
    white-space: normal;
	margin-right:5px;
	margin-bottom:10px;
}
.single-tag a:hover{
	box-shadow:0 0 3px rgba(0,0,0,0.4);
}

/*翻页*/
.single-turepage{
	padding:20px 0;
	display:flex;
	justify-content:space-between;
	align-items:stretch;
}
.single-turepage > div{
	width:48%;
	position:relative;
	font-size:15px;
}
.single-turepage > div span{
	display:block;
}
.single-turepage > div a{
	color:#333;
}
.single-turepage > div i{
	position:absolute;
	top: 5px;
    font-size: 20px;
}
.single-turepage-prve{
	text-align:left;
	padding-left:25px;
}
.single-turepage-prve i{
	left:0;
}
.single-turepage-next{
	text-align:right;
	padding-right:25px;
}
.single-turepage-next i{
	right:0;
}

/*服务详情*/
.service-single{
	display:flex;
	justify-content:space-between;
	align-items:flex-center;
	margin-top:30px;
	padding-bottom:50px;
	border-bottom:1px #ccc dotted;
}
.service-single-title{
	width:55%;
}
.service-single-title p{
	margin-top:15px;
	color:#999;
}
.service-single-img{
	width:40%;
}
.service-single-img img{
	height:220px;
	width:100%;
}
.recommend-service h3{
	font-size: 14px;
    color: #333;
    padding: 15px;
    font-weight: 600;
	 white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.recommend-service img {
    height: 120px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}

/*联系我们*/
.aboutmap{
	width:50%;
}
.aboutads{
	width:50%;
}
.contact-ctn{
	display:flex;
	justify-content:space-between;
	align-items:stretch;
	margin-top:50px;
}
.contact-title{
	text-align:center;
}
.contact-title h3{
	font-size:36px;
	padding-bottom:15px;
	border-bottom:1px #dedede solid;
	position:relative;
	margin-bottom:30px;
}
.contact-title h3:before{
  content: "";
    width: 120px;
    height: 4px;
    position: absolute;
    bottom: -2px;
    left: 50%;
    background: #e53e40;
    -webkit-transform: skewX(28deg);
	transform: skewX(28deg);
	margin-left:-60px;
}
.contact-title p{
	font-size:15px;
}
.aboutmap{
	height:398px;
	overflow:hidden;
}
.aboutads{
	background:#f4f4f4;
	padding:25px 40px 0 40px;
	font-size:16px;
}
.aboutads-item {
	padding:15px 25px;
	display:flex;
	justify-content:flex-start;
	align-items:flex-start;
		margin-bottom:25px;
		background:#eee;
}
.aboutads-item i{
	font-size:22px;
	margin-right:15px;
	line-height:1.5;

}
.aboutads-item p strong{
	line-height:2;
}
.aboutads-3{
	text-align:center;
}
.aboutads-3 img{
	width:150px;
	height:150px;
}
/*在线联系*/
.linemessage-ctn{
	background:#f4f4f4;
	padding:40px;
	font-size:15px;
}
.lineform-1{
	display:flex;
	justify-content:space-between;
	align-items:stretch;
	margin-bottom:20px;
	margin-top:40px;
}
.lineform-1 div{
	width:48.5%;
	background:#fff;
	padding:15px;
}
.lineform-1 label{
	margin:0;
}
.lineform-1 input{
	width:60%;
	border:none;
}
.lineform-2{
	background:#fff;
	padding:15px;
}
.lineform-2 label{
	display:block;
}
.lineform-2 textarea{
	width:100%;
	border:none;
}
.lineform-3b{
	margin-top:20px;
}
.lineform-3{
	background:#fff;
	padding:15px;
	width:30%;
	position:relative;
}
.lineform-3 input{
	border:none;
}
.lineform-3 label{
	margin-bottom:0;
}
.lineform-3 img{
    width: auto;
    height: 42px;
    position: absolute;
    top: 5px;
    right: 10px;
}
.linemessage-ctn button{
	border:none;
	background:#e53e40;
	color:#fff;
	width:140px;
	line-height:38px;
	margin-top:15px;
}

.linemessage-ctn p{
	font-size:16px;
}
.linemessage-ctn p:first-child{
	font-size:24px;
	margin-bottom:15px;
	color:#e53e40;
}
/*关于我们*/
.aboutus1-ctn video{
	/*float:left;*/
	margin-right:30px;
	margin-bottom:30px;
}
.aboutus1-ctn p{
	margin-bottom:30px;
	font-size:17px;
	color:#666;
	line-height:1.8;
}
.aboutus-2{
	background:#f4f4f4;
}
.aboutus2-ctn{
	display:flex;
	justify-content:space-between;
	align-items:stretch;
}
.aboutus2-item{
	background:#fff;
	height:406px;
	width:33.5%
}
.aboutus2-item img{
	height:203px;
	width:100%;
}
.aboutus2-item .aboutus2-text{
	height:203px;
	padding:15px 30px;
}
.aboutus2-item .aboutus2-text h3{
	font-size:28px;
	margin-bottom:15px;
}
.aboutus2-item .aboutus2-text p{
	font-size:15px;
	color:#999;
	line-height:1.5
}
.aboutus3-ctn,.aboutus4-ctn{
	display:flex;
	justify-content:flex-start;
	align-items:stretch;
	flex-wrap:wrap;
}
.aboutus3-item{
	width:25%;
	padding:15px;
}
.aboutus3-item img{
	width:100%;
}
.aboutus4-item{
	width:33.3%;
	padding:30px;
	border-right:1px #dedede solid;
	font-size:14px;
	line-height:1.8;
}
.aboutus4-item:nth-child(3n){
	border-right:none;
}
.aboutus-5{
	height:400px;
}

.bannerform-mold:after{
    content:"";
		position:fixed;
		top:50%;
		left:50%;
		transform:translate(-50%,-50%);
		width:2000px;
		height:2000px;
		z-index:111;
		background:rgba(0,0,0,0.6);
		
	}
	.bannerform-mold form{
	    
	}
	.bannerform-mold.bannerform{
		position:fixed;
		top:50%;
		left:50%;
		transform:translate(-50%,-50%);
		z-index:9999;
		right: auto;
	}
	.bannerform-mold.bannerform > div{
	    background: #fff;
	    position: relative;
	    z-index: 9999;
	    border-radius: 10px;
	    
	    
	}
	.mbformclose{
		position:fixed;
		top:20%;
		right:20%;		
		opacity:0.6;
		z-index:999;
		display:none;
	}
	.mbformclose i{
		color:#fff;
		font-size:28px;
		
	}
	.formclose{
		position:fixed;
		top:20px;
		right:20px;		
		opacity:0.6;
		z-index:99999;
		display:none;
	}
	.formclose i{
		color:#fff;
		font-size:28px;
		
	}


.mbtell{
	position:fixed;
	top:350px;
	right:0;
	display:block;
	width: 60px;
    min-height: 100px;
    padding: 15px 10px;
	background:#dfa22c;
	z-index:100;
	color:#fff;
	font-size:22px;
	text-align:center;
	border-radius:8px 0 0 8px;
}
.mbtell i{
	font-size:25px;
}
.formopen{
	position:fixed;
	top:200px;
	right:0;
	display:block;
	width:60px;
	min-height:100px;
	padding:15px 10px;
	background:#d81817;
	z-index:100;
	color:#fff;
	font-size:22px;
	text-align:center;
	border-radius:8px 0 0 8px;
    color:#fff;
}
.formopen:hover{
    color:#fff;
}
/*.mbformopen{
	position:fixed;
	top:200px;
	right:0;
	display:block;
	width:50px;
	min-height:100px;
	padding:15px 5px;
	background:#dfa22c;
	z-index:100;
	color:#fff;
	font-size:22px;
	text-align:center;
	border-radius:8px 0 0 8px;
}
.mbformopen:hover{
	color:#fff;
}*/

/*关于我们大事记*/
.abdsj{
    position:relative;
    width:100%;
    display: bolck;
    min-height:700px;
    padding-bottom:30px;
}
.abdsj-l,.abdsj-r{
    position: absolute;
    top:0;
    min-height:160px;
}
.abdsj-l{
    width:50%;
    padding-right: 30px;
    text-align: right;
    left:0;
    padding-bottom:80px;
}
.abdsj-r{
    width:50%;
    padding-left: 30px;
    text-align: left;
    right:0;
     padding-top:80px;
}

.abdsj h3{
    font-size: 32px;
    color: #d39b2e;
}
.abdsj p{
    font-size: 18px;
}
.abdsj02{top:160px;}
.abdsj03{top:320px;}
.abdsj04{top:480px;}
.abdsj05{top:640px;}
.abdsj:after{
    content:"";
    position: absolute;
    top:0;
    left:50%;
    width:1px;
    height:700px;
    background: #ccc;
}
.abdsj-l:after{
    content:"";
    position: absolute;
    top:18px;
    right:-5px;
    width:10px;
    height:10px;
    background: #ccc;
    border-radius: 50px;
}
.abdsj-r:after{
    content:"";
    position: absolute;
    top:100px;
    left:-5px;
    width:10px;
    height:10px;
    background: #ccc;
    border-radius: 50px;
}
.abdsjimg{
    text-align: center;
}
.abdsjimg img{
    text-align: center;
    width: 100%;
    max-width: 1000px;
}







.mbhas{
		display:none;
	}
/***************************适配移动端*****************************/
@media (min-width:960px) and (max-width:1400px){
    .bannerform > div{
        width: 250px;
        padding: 20px 15px!important;
    }
    .bannerform h3 {
        font-size: 20px;
     margin-bottom: 15px;
    }
    .bannerform input {
    width: 100%;
    height: 36px;
    padding-left: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 14px;
}
    .bannerform-btn {
    font-size: 14px;
    height: 36px;
    line-height: 36px;
    margin-top: 10px;
}
.bannerform p{
    margin-top: 10px
}
.homebk-1 {
    margin-top: -50px;
    padding: 30px 0;
}
.bannerform {
    right:6%;
}
.banner .swiper-container-horizontal > .swiper-pagination-bullets{
        bottom:30px;
    }
}
@media (min-width:821px) and (max-width:959px){
    .banner .swiper-container-horizontal > .swiper-pagination-bullets{
        bottom:20px;
    }
    .bannerform {
    transform: translateY(-50%);
}
    .bannerform > div{
        width: 210px;
        padding: 15px 10px!important;
    }
    .bannerform h3 {
        font-size: 16px;
     margin-bottom: 10px;
    }
    .bannerform input {
    width: 100%;
    height: 32px;
    padding-left: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 14px;
}
    .bannerform-btn {
    font-size: 14px;
    height: 32px;
    line-height: 32px;
    margin-top: 10px;
}
.bannerform p{
    margin-top: 5px
}

    .homebk-1 {
    margin-top: 30px;
    padding: 20px 0;
}
}
@media (min-width:821px) and (max-width:1024px){
	.container{
		padding-left:15px;
		padding-right:15px;
		width:100%;
	}
	.logo{
		height:48px;
		top:-46px;
		bottom:auto;
	}
	.hdtopline-time:last-child{
		display:none;
	}
	.hdtopline-time{
		width:48%;
	}
	.hdtopline-ctn{
		padding-left:200px;
	}
	.footer-top p span{
		font-size:32px;
	}
}
@media (max-width:820px){
    .banner.homepcbanner{
      height:0!important;  
    }
    .homebk7-zuche{
	width:30%;
	height:500px;
	padding:15px;	
	background:#fff;
	border-radius:8px;
	margin-bottom:40px;
}

	.site-wrapper{
		padding:0;
	}
	.container{
		padding-left:15px;
		padding-right:15px;
	}
	.mb-hid{
		display:none!important;
	}
	.mb-has{
		display:block;
	}
	.mbhas{
		display:block;
	}
	.footer1{
		display:none;
	}
	.footer-bottom{
		padding-top:30px;
	}
	/*移动端导航*/
	.header-m .logo{
		width:70%;
		text-align:center;
		width:auto;
		padding: 0;
		background:none;
		position: initial;
	}
	.header-m .logo img{
		max-width:100%;
		height:42px;
	}
	.searchmod{
		position:fixed;
		top:0;
		left:0;
		width:100%;
		height:100%;
		background:rgba(0,0,0,0.5);
		display:none;
		z-index:999;
	}
	.searchmod .search-form{
		position:absolute;
		top:50%;
		left:50%;
		transform:translate(-50%,-50%);
		background:#fff;
		padding:50px;
		border-radius:8px;
	}
	.searchmod .search-form input{
		width:520px;
		height:42px;
		border:none;
		border-bottom:1px #dedede solid;
		padding-left:15px;
		padding-right:50px;
	}
	.searchmod .search-form button{
		position:absolute;
		top:50px;
		right:50px;
		background:none;
		border:none;
	}
	.searchmod .search-form button i{
		font-size:28px;
	}
	.searchmod .search-form .closesearch{
		position:absolute;
		top:-10px;
		right:-10px;
		color:#777;
		background:none;
		box-shadow:none;
		padding:0;
	}
	.searchmod .search-form .closesearch i{
		font-size:14px;
		display:block;
		width:25px;
		height:25px;
		line-height:25px;
		background:#dedede;
		border-radius:50%;
		text-align:center;
	}
	.searchmod .search-form .closesearch:hover{
		box-shadow:none;
	}
	.mbnav{
		position:fixed;
		top:0;
		bottom:0;
		left:-100%;
		width:100%;
		height:100%;
		background:rgba(0,0,0,0.6);
		z-index:999;
		overflow-y:auto;
	}
	.mbnav nav{
		background:#fff;
		width:80%;
		padding:30px;
		min-height: 100%;
	}
	.mbnav .navclose{
		position:absolute;
		top:20px;
		right:50px;
		color:#000;
		display:block;
		width:40px;
		height:40px;
		line-height:40px;
		text-align:center;
		background:#ccc;
		border-radius:50%;
	}
	.mbnav .navclose i{
		font-size:20px;
	}
	.mbnavuc{
		padding:15px;
		background:#f4f4f4;
		color:#999;
	}
	.mbnavuc img{
		width:40px;
		height:40px;
	}
	.mbnavuc a{
		font-size:16px;
		color:#333;
		margin:0 10px;
	}
	.mbnavul{
		margin-top:15px;
	}
	.mbnavul > li {
		border-bottom:1px #dedede dotted;
	}
	.mbnavul > li > a{
		display:block;
		height:42px;
		line-height:42px;
		padding-left:10px;
		padding-right:10px;
		font-weight:600;
		font-size:16px;
	}
	.mbnavul .sub-menu{
		padding-left:15px;
		padding-bottom:15px;
		display:flex;
		justify-content:space-between;
		align-items:center;
		flex-wrap:wrap;
	}
	.mbnavul .sub-menu li{
		width:48%;
		margin-bottom:6px;
	}
	.mbnavul .sub-menu li a{
		display:block;
		width:100%;
		height:36px;
		line-height:36px;
		text-align:center;
		background:#f4f4f4;
		border-radius:5px;
		
	}
	.formopen,.formclose {
	    display: none!important;
	}
	.bannerform-ctn{
		position:fixed;
		top:50%;
		left:50%;
		transform:translate(-50%,-50%);
		width:100%;
		height:100%;
		z-index:111;
		background:rgba(0,0,0,0.6);
		display:none;
	}
	.bannerform{
		position:fixed;
		top:50%;
		left:50%;
		transform:translate(-50%,-50%);
		z-index:9999;
	}
	.mbformclose{
		position:fixed;
		top:20%;
		right:20%;		
		opacity:0.6;
		z-index:999;
		display:none;
	}
	.mbformclose i{
		color:#fff;
		font-size:28px;
		
	}
	.header-m {
		display:flex;
		justify-content:space-between;
		align-items:center;
		padding:10px 15px;
		background:#1b1b1b;
	}
	.header-m a{
		color:#333;
	}
	.header-m a.mb-navbtn{
		color:#e53e40;
		display:block;
	}
	.header-m a i{
		font-size:20px;
	}
	.header-m .schcart-btn a i{
		font-size:24px;
		
	}
	.header-m .logo img{
		height:52px;
	}
	.searchmod{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		background: rgba(0,0,0,0.6);
		z-index: 999;
		padding: 20px;
		display: none;
	}
	.searchmod form{
		width:80%;
		margin:0 auto;
		background:#fff;
	}
	.search-form{
		width:85%;
		padding:20px;
	}
	.search-form input{
		width:100%;
	}
	.search-form button {
		top: 25px;
		right: 15px;
	}
	/*banner*/
	.banner img{
	 height:400px;
	}
	.bannerform{
		display:none;
	}
	.pagebanner img{
		height:300px;
	}
	/*首页板块*/
	.homebk {
		padding-top: 40px;
	}
	.homebk-ctn{
		width:100%;
	}
	.homebk-title h2 a{
		font-size:28px;
	}
	.homebk-1{
		margin-top:30px;
	}
	.homebk3-item{
		height:250px;
	}
	.homebk4-l {
		width: 40%;
	}
	.homebk4-ltt {
		width: 100%;
		height: 100%;
		padding: 33px 25px;
		position: absolute;
		z-index: 2;
		top: 0;
		left:0;
	}
	.homebk4-r{
		width: 60%;
	}
	.homebk4-r a {
		margin-right: 15px;
		margin-top: 15px;
		width: 100%;
		text-align: center;
	}
	.homebk4-r-item img{
		width:110px;
	}
	.homebk4-b{
		display:none;
	}
	.pagebody .homebk-ctn{
		width:100%;
	}
	.homebknav {
		display:none;
	}
	.homebk1-item {
		width: 48%;
	}
	.homebk5-l,.homebk5-r {
		width: 100%;
		margin-bottom:40px;
	}
	.homebk4-item{
		width:100%;
		margin-bottom:15px;
	}
	.homebk4-title{
		width:68%;
	}
	.homebk4-img{
		width:calc(30% - 20px);
	}
	.homebk7-item{
		height:180px;
	}
	.homebk7-img{
		height:150px;
		width:150px;
	}
	.homebk7-tt {
		width: 49.3%;
	}
	.homebk6-swiper {
		height: 240px;
	}
	.homebk6-swiper .swiper-slide{
		padding:10px;
	}
	/*侧边栏*/
	.sidebar {
		display:none;
	}
	.pagebody-body{
		width:100%;
		padding:0;
	}
	.contact-ctn{
	display:block;
	}

	.pdpage1-item img{
		width:120px;
		height:120px;
	}
	.pdpage1-item h3{
		font-size:28px;
	}
	.pdpage2-item img {
		width: 100px;
	}
	.pdpage2-item{
		font-size:20px;
	}
	.pdpage3-item{
		font-size:20px;
	}
	.pdpage3-item img{
		height:80px;
	}
	.pdpage3-item span{
		font-size: 40px;
	}
	.banner .swiper-container-horizontal > .swiper-pagination-bullets {
		bottom: 20px;
	}
	.anlipage .homebk7-img {
		height: 110px;
		width: 110px;
	}
	.anlipage .homebk7-tt {
		width: 61.3%;
	}
	.anlipage .homebk7-tt p{
		-webkit-line-clamp: 2;
	}
	.anlipage .listtag {
		position: absolute;
		left: 15px;
		bottom: 15px;
		white-space:nowrap;
	}
	.newspage-list {
		width: 100%;
	}
	.aboutus1-ctn video {
		margin-right: 0;
		width: 100%;
		height: 400px;
	}
	.aboutus4-item{
		width:50%;
	}
	.aboutus4-item:nth-child(3n) {
		border-right: 1px #dedede solid;
	}
	.aboutus4-item:nth-child(2n) {
		border-right:none;
	}
	.pdpage-title:before{
		left:15px;
	}
	.pdpage-title{
		padding-left:35px;
	}
	/*移动端页脚跟随导航*/
	.mbfotnav{
		position:fixed;
		bottom:0;
		left:0;
		right:0;
		background:#fff;
		display:flex;
		justify-content:space-between;
		align-items:center;
		z-index:99;
		border-top: 1px #ddd solid;
	}
	.mbfotnav > div{
		width:50%;
		text-align:center;
		color:#dfa22c;
		border-right:1px solid rgba(255,255,255,0.3);
		height: 70px;
		line-height: 70px;
		font-size: 24px;
	}
	.mbfotnav > div img{
	/*	display:block;
		margin:0 auto 6px;*/
	}
	.mbfotnav > div a{
		color:#dfa22c;
	}
	.partner,.flowchart,.fot-3-items,.fot-2,.fot-3-iteml,.customer-f{
		display:none;
	}
	.homebk9-ctn .swiper-button-next,.homebk8-ctn .swiper-button-next,.homebk8-ctn .swiper-button-prev,.homebk9-ctn .swiper-button-prev{
		display:none;
	}
	.mbfotnav > div img{
	    display: inline-block;
	    margin-right: 5px;
	    width:38px;
	}
	.mbfotnav > div.mbfotnav-2 {
	    font-size: 24px;
        background: #dfa22c;
        height: 70px;
        line-height: 70px;
	}
	.mbfotnav > div.mbfotnav-2  a{
		color:#fff;
	}
/*关于我们大事记*/
.abdsj{
    position:relative;
    width:100%;
    display: bolck;
    min-height:580px;
    padding-bottom:30px;
}
.abdsj-l,.abdsj-r{
    position: absolute;
    top:0;
    min-height:100px;
}
.abdsj-l{
    width:50%;
    padding-right: 20px;
    text-align: right;
    left:0;
    padding-bottom:50px;
}
.abdsj-r{
    width:50%;
    padding-left: 20px;
    text-align: left;
    right:0;
     padding-top:50px;
}

.abdsj h3{
    font-size: 24px;
    color: #d39b2e;
}
.abdsj p{
    font-size: 16px;
}
.abdsj02{top:100px;}
.abdsj03{top:200px;}
.abdsj04{top:300px;}
.abdsj05{top:400px;}
.abdsj06{top:500px;}
.abdsj:after{
    content:"";
    position: absolute;
    top:0;
    left:50%;
    width:1px;
    height:580px;
    background: #ccc;
}
.abdsj-l:after{
    content:"";
    position: absolute;
    top:8px;
    right:-5px;
    width:10px;
    height:10px;
    background: #ccc;
    border-radius: 50px;
}
.abdsj-r:after{
    content:"";
    position: absolute;
    top:56px;
    left:-5px;
    width:10px;
    height:10px;
    background: #ccc;
    border-radius: 50px;
}	
}

@media (max-width:430px){
  .homebk7-zuche{
	width:100%;
	height:500px;
	padding:15px;	
	background:#fff;
	border-radius:8px;
	margin-bottom:40px;
}

	.banner {
		margin:0;
	}
	.banner img {
		height: 230px;
	}
	.header-m .logo{
		width:70%;
		text-align:center;
		height: 42px;
		width:auto;
		padding: 0;
		background:none;
		position: initial;
	}
	.wbreadcrumb {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.mbformclose{
		position:fixed;
		top:20px;
		right:20px;		
	}
	.mbformclose{
		font-size:22px;
	}
	/*.mbformopen{
		width: 40px;
		font-size: 19px;
	}*/
	.mbtell{
		top:335px;
		width: 40px;
		min-height: 50px;
		padding: 12px 5px;
	}
	.mbtell i{
		font-size: 19px;
	}
	.pdpage-title h2 {
		font-size: 26px;
		margin-bottom: 15px;
	}
	.pdpage-title p {
		font-size: 26px;
	}
	.pdpage-title:before{
		height:33px;
	}
	
	.pdpage-title{
		margin-bottom:0;
	}
	.aboutus1-ctn {
		text-align:justify;
	}
	.aboutus2-ctn{
		flex-wrap:wrap;
	}
	.aboutus2-item{
		width:100%;
		margin-bottom:20px;
		height:auto;
	}
	.aboutus2-item .aboutus2-text {
		height: auto;
		padding: 30px;
	}
	.aboutus2-item:nth-child(2n){
		display:flex;
		flex-direction:column-reverse;
	}
	.aboutus2-item .aboutus2-text h3{
		font-size:22px;
	}
	.aboutus1-ctn video{
		height:200px;
	}
	.aboutus2-item img{
		height:120px;
	}
	.aboutus2-ctn{
		margin-bottom:0;
	}
	.aboutus3-item {
		width: 50%;
		padding: 10px;
	}
	.aboutus-3{
		padding-bottom:0;
	}
	.aboutus4-item {
		width: 100%;
		border-bottom: 1px #dedede solid;
		border-right:none;	
		padding:30px 0;		
	}
	.aboutus4-item:nth-child(3n) {
		border-right: none;
	}
	.header-m .logo img{
		max-width:100%;
		height:42px;
	}
	.recation{
		display:block;
		height:auto;
	}
	.recation-item,.recation-item:last-child {
		width:100%;
		height:200px;
		margin-bottom:15px;
	}
	.mbnav nav{
		padding:30px 15px;
	}
	.mbnav .navclose {
		top: 30px;
		right: 15px;
		width: 35px;
		height: 35px;
		line-height: 35px;
	}
	.searchmod .search-form{
		width:85%;
		padding:20px;
	}
	.searchmod .search-form{
		width:85%;
	}
	.searchmod .search-form input{
		width:100%;
	}
	.searchmod .search-form button {
		width:65px;
		top: 25px;
		right: 15px;
	}
	/*首页板块*/
	.homebk1-ctn{
		display:block;
	}
	.banner{
		height:230px;
	}
	.homebk-1{
		box-shadow:none;
		flex-wrap:wrap;
		padding-top:0;
		padding-bottom:0;
		margin-bottom: 0;
		margin-top: 20px;
	}
	.homebk1-item{
		width:100%;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-direction: row;
		text-align: left;
		margin-bottom:10px;
		padding:10px 15px;
		box-shadow:0 0 6px rgba(0,0,0,0.2);
		border-radius:8px;
		
	}
	.homebk1-item img{
		margin-right:10px;
		margin-bottom: 0px;
	}
	.homebk3-ctn{
		flex-wrap:wrap;
		margin-top:20px;
		
	}
	.homebk-3 {
    margin-bottom: 0;
}
	.homebk3-item {
		width: 33%;
    height: 133px;
		margin-bottom: 20px;
	}
	.homebk3-item a img {
		height: 40px;
		opacity: 1;
		padding: 3px;
	}
	.homebk3-item h3 {
    font-size: 15px;
    margin-top: 3px;
    margin-bottom: 0px;
}
.homebk3-item p {
    font-size: 12px;
    height: 34px;
}
.homebk3-item > img{
    height:133px;
}
.homebk-title p{
    margin-top:0;
}
	.homebk1-item h3{
	    font-size: 16px;
	    margin-bottom: 0;
	    
	}
	.homebk1-item p{ font-size: 12px;}
	.homebk-title h2{
	    font-size: 28px;
	}
	.homebk-4 {
	    padding-top:40px;
}
	.homebk4-ltt h3 {
    font-size: 28px;
}
	.homebk4-item {
		display: block;
		margin-bottom:20px;
	}
	.homebk4-l {
		width: 100%;
		height:100px;
	}
	.homebk4-ltx{
		display:none;
	}
	.homebk4-r {
		width: 100%;
	}
	.homebk4-r-item {
		padding: 10px;
		height: 150px;
		
	}
	.homebk4-r-item img {
		width: 70px;
	}
	.homebk4-ltt{
		padding: 15px 25px;
	}
	.homebk4-ltt a{
		bottom: 50%;
		right: 10px;
		transform:translateY(50%);
	}
	.homebk-8{
		display:none;
	}
	.homebk-7{
		margin-top:30px;
	}
	.homebk7-item {
		width: 100%;
		margin-bottom: 30px;
	}
	.homebk-6{
	    display: none;
	}
	.homebk6-swiper {
		height: 250px;
	}
	.homebk6-swiper .swiper-slide {
		padding: 10px;
		width:50%;
	}
	.pdpage1-ctn{
		flex-wrap:wrap;
	}
	.pdpage1-item{
		width:50%;
		margin-bottom:30px;
	}
	.pdpage1-item h3 {
		font-size: 24px;
	}
	.pdpage2-item {
		font-size: 16px;
		width:100%;
	}
	.pdpage3-item {
		font-size: 14px;
	}
	.pdpage3-item img {
		height: 40px;
		margin-bottom:10px;
	}
	.pdpage3-item span {
		font-size: 22px;
		bottom: 55px;
	}
	.pdpage4-ctn li{
		padding:20px;
	}
	.homebk7-tt h3{
		font-size:17px;
	}
	.anlipage{
		padding-top:0;
	}
	.newspage-list .homebk7-img{
		height:90px;
	}
	.newspage-list .homebk7-tt p{
		display:none;
	}
	.homebk7-item-noimg .homebk7-tt{
		height:90px;
	}
	.homebk4-img {
		width:100px;
		height: 80px;
		margin-right: 10px;
	}
	.homebk4-title{
		width: 68%;
		padding-top:5px;
		padding-bottom:5px;
	}
	.homebk4-title p{
		display:none;
	}
	.homebk4-date span{
		margin-right:15px;
	}
	.homebk4-title h3 a{
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		line-clamp: 2;
		-webkit-box-orient: vertical;
		white-space: normal;
		font-size:15px;
		padding-top:5px;
	}
	.homebk4-date{
		bottom:6px;
	}
	.homebk5-r-link li{
		height:auto;
	}
	.w-wznr{
		margin-bottom:0;
	}
	.single-ctn ul {
		padding-left: 20px;
	}
	.single-tag{
		margin-top:0;
	}
	.single-turepage{
		display:block;
	}
	.single-turepage > div{
		width:100%;
		padding-left:0px;
	}
	.single-turepage-next{
		padding-left:0px;
		padding-right:0;
		text-align:left;
		margin-top:10px;
	}
	.single-turepage > div span{
		display:flex;
		align-items:baseline;
		color:#999;
		font-size:14px;
	}
	.single-turepage > div span i{
		position:relative;
		display:inline-block;
		font-size:15px;
		margin-right:5px;
	}
	.homebk4-item-3img .homebk4-img a img{
		height:70px;
	}
	.homebk4-item-3img {
		height: 185px;
	}
	.homebk4-item-3img .homebk4-date span, .homebk4-item-noimg .homebk4-date span{
		margin-right:0;
	}
	.homebk4-item-noimg {
		height: 80px;
	}
	.single-turepage > div i{
		display:none;
	}
	.single {
		padding-left: 10px;
		padding-right: 10px;
	}
	.sidebar-title{
		display:none;
	}
	.recommend .sidebar-title{
		display:block;
	}
	.service-single{
		display:block;
	}
	.service-single-img,.service-single-title{
		width:100%;
		margin-bottom:30px;
	}
	.service-single-title h1{
		text-align:center;
	}
	.aboutcompany{
		display:block;		
	}
	.aboutcompany-l{
		padding-right:0;
	}
	.aboutcompany img{
		width:100%;
	}
	.honor-ctn .spotlight-group{
		justify-content:space-between;
	}
	.honor-ctn .image{
		width:48%;
		margin-right:0;
		height:120px;
	}
	.aboutads{
	flex-wrap:wrap;
	padding:20px;
	}

	.aboutads-item{
		width:100%;
	}
	.aboutcompany{
		display:block;
	}
	.aboutcompany-l{
		padding:0 15px;
	}
	.aboutcompany img{
		width:100%;
	}
	.aboutcompany h3{
		font-size:24px;
	}
	.honor,.cptestyle  {
		padding:0 10px;
	}
	.honor-ctn .image {
		width: 47%;
	}
	.honor-ctn .image{
		height:105px;
	}
	.spotlight-group .image span {
		line-height: 26px;
		height: 26px;
		font-size: 12px;
		padding: 0 5px;
		margin-left: -50px;
	}
	.contact-title h3{
		font-size:26px;
	}
	.contact-title p{
		padding:0 20px;
	}
	.linemessage-ctn{
		padding:30px 15px;
	}
	.lineform-1 div{
		width:100%;
		margin-bottom:20px;
	}
	.lineform-1{
		display:block;
	}
	.lineform-3b{
		display:block;
	}
	.lineform-3{
		width:100%;
		margin-bottom:20px;
	}
	.lineform-3b button{
		width:100%;
		margin:0;
	}
	/*页脚*/
	.fot-1, .fot-2 {
		display: none;
	}
	.recom .homebk3-item{
		width:100%;
	}
	.bannerform {
	    width:90%;
	}
	.bannerform > div{
	    width:100%;
	}
	  .mbfotnav > div a{
    font-size: 18px;
    }
    .mbfotnav > div img {
    display: inline-block;
    margin-right: 5px;
    width: 27px;
}

.friendlink{
    display: none;
}
/*关于我们大事记*/
.abdsj{
    position:relative;
    width:100%;
    display: bolck;
    min-height:580px;
    padding-bottom:30px;
}
.abdsj-l,.abdsj-r{
    position: absolute;
    top:0;
    min-height:100px;
}
.abdsj-l{
    width:50%;
    padding-right: 20px;
    text-align: right;
    left:0;
    padding-bottom:50px;
}
.abdsj-r{
    width:50%;
    padding-left: 20px;
    text-align: left;
    right:0;
     padding-top:50px;
}

.abdsj h3{
    font-size: 18px;
    color: #d39b2e;
}
.abdsj p{
    font-size: 14px;
}
.abdsj02{top:100px;}
.abdsj03{top:200px;}
.abdsj04{top:300px;}
.abdsj05{top:400px;}
.abdsj06{top:500px;}
.abdsj:after{
    content:"";
    position: absolute;
    top:0;
    left:50%;
    width:1px;
    height:580px;
    background: #ccc;
}
.abdsj-l:after{
    content:"";
    position: absolute;
    top:8px;
    right:-5px;
    width:10px;
    height:10px;
    background: #ccc;
    border-radius: 50px;
}
.abdsj-r:after{
    content:"";
    position: absolute;
    top:56px;
    left:-5px;
    width:10px;
    height:10px;
    background: #ccc;
    border-radius: 50px;
}
} 

@media (max-width:365px){
    	.banner img {
		height: 200px;
		
	}
    	.banner{
		height:200px;
	}
}

/*baidu*/
.embed-icon{
    top:65%!important;
}

