

/* 初始化标签 */
blockquote, body,div, button, dd, dl, dt, fieldset, form, h1, h2, h3, h4, h5, h6, hr, input, legend, li, ol, p, pre, td, textarea, th, ul,header,footer {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    /* font-weight: normal;
    vertical-align: baseline; */
}


body{
    /* font-size: 1.6rem; */
    font-family: Microsoft YaHei,Heiti SC,tahoma,arial,Hiragino Sans GB,"\5B8B\4F53",sans-serif;
    background-color: #F6F6F6 !important;
    background: url(../../images/bg.jpg) no-repeat;
}

/* 清除列表的默认风格 */
ul, ol, dl,li{
    list-style: none;
}

/* 表单相关的元素 */
button,input,fieldset,img,textarea{
    border: none;
    margin: 0;
    padding: 0;
    background: none;
    /* 清除外边线 */
    outline: none;
}

/* 超链接 */
a{
    text-decoration: none;
    color: #333333;
}


/* h家族 */
h1,h2,h3,h4,h4,h5,h6{
    font-weight: normal;
    font-size: 100%;
}

/* 浮动 */
.fl{
    float: left;
}
.fr{
    float: right;
}

/* 清除浮动 */
.clearfix::before,
.clearfix::after{
    content: '';
    display: table;
    clear: both;
}

/* 版心 */
.w{
    width: 1200px;
    margin: 0 auto;
}

/* 水平对齐方式 */
.tl{
    text-align: left;
}
.tr{
    text-align: right;
}
.tc{
    text-align: center;
}

/* 页面通用颜色 */
.color{
    color: #F85959;
}

/* 清除em属性 */
i  {
    font-style: normal;
    /* text-decoration: none; */
}

em{
    font-style:normal;
}

input,button,a,div{
    outline:0 none !important; blr:expression(this.onFocus=this.blur());
}



/********************** 页头 Start **********************/
.head{
    height: 130px;
    /*background-color: #ffffff;  */
    border-radius:6px 6px 0 0;
}

/* 左边logo */
.head .left_logo{
    width: 416px;
    height: auto;
    padding-top: 29px;
}
.head .left_logo img{
    width: 416px;
    height: auto;
    
}

/* 中间搜索框 */
.middle_search{
    width: 370px;
    height: 44px;
    /* background-color: aquamarine; */
    margin: 43px 0 0 80px;
    background:rgb(255,255,255,0.8);
    border-radius: 6px;
}

/*.middle_search form{*/
/*    width: 440px;*/
/*    height: 44px;*/
/*    background-color: #ffffff;*/
/*}*/
.search_box input{
	outline: none; 
}


.middle_search  .search_box{
    width: 300px;
    height: 44px;
    padding-left: 20px;
    border:1px solid #dddddd;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.middle_search .search_box::placeholder{
    font-size: 14px;
    color: #999999;
}

.middle_search  .search_box:focus{
    border: 1px solid #F85959 ;
}

.middle_search .search_submit{
	display:inline-block;
    width: 70px;
    height: 44px;
    border: none;
    font-size: 16px;
    color: #ffffff;
    position: absolute;
	background:#F85959 url(../../images/sousuo@2x.png) no-repeat center center;
    background-size:22px auto;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.middle_search .search_submit:hover,
.middle_search img:hover{
    cursor: pointer;
}

.middle_search img{
    display: block;
    width: 22px;
    height: 22px;
    position: relative;
    left:  29px;
    top: 11px;
}

/* 右边文字 */
.right_words{
    margin:45px 0 0 100px; 
}

.right_words p {
    color: #333333;
    font-size: 15px;
    text-shadow: 0 0 10px #eeeeee;
}

/********************** 页头 end **********************/


/********************** 导航栏 Start **********************/
.navbar {
    /* width: 100%; */
    
    height: 46px;
    background-color: #444444;
    position: relative;
    z-index: 1;
    line-height: 46px;
}

.nav {
    width: 100%;
    background-color: #444444;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.nav .m {
    position: relative;
    width: 131px;
    height: 46px;
}

.nav li.m:hover h3{
	background-color: #F85959;	
}

.nav .m h3 a {
    display: block;
    width: 100%;
    height: 46px;
    line-height: 46px;
    text-align: center;
    color: #fff;

}

.nav .m h3 i {
    display: inline-block;
    /* zoom: 1; */
    width: 7px;
    height: 4px;
    background: url(../../images/icon.png) 0 -280px no-repeat;
    overflow: hidden;
    margin: -2px 0 0 5px;
    vertical-align: middle;
    filter: alpha(opacity=50);
    opacity: 0.5;
}

.nav .active h3 a {
    background-color: #F85959;
}

.nav .active h3 a i {
    filter: alpha(opacity=100);
    opacity: 1;
}
/* 
.nav .on h3 a {
    background-color: #F85959;
}

.nav .on h3 a i {
    filter: alpha(opacity=100);
    opacity: 1;
} */

.nav .sub {
    display: none;
    /*默认隐藏*/
    width: 131px;
    padding: 10px 0;
    position: absolute;
    left: 0px;
    top: 46px;
    background: #ffffff;
    float: left;
    line-height: 30px;
}

.nav .sub li {
    text-align: center;
}

.nav .sub li a {
    display: block;
    color: #333;
    width: 100%;
    height: 40px;
    line-height: 40px;
}

.nav .sub li a:hover {
    background: #ddd;
    color: #F85959;
}


/********************** 导航栏 end **********************/


/********************** 页尾 start **********************/

/* 页尾顶部 */
.footer_top{
    width: 100%;
    height: 220px;
    margin-top: 30px;
    background-color: #383838;
}
/* 页尾左边 */
.footer_top_left{
    width: 410px;
    margin-top: 30px;
    border-right: 1px solid #272727;
    background-color: #383838;
}

.footer_top_left h3{
    color: #ffffff;
    font-size:18px;
    font-weight: bold; 
    margin-bottom: 30px;
    padding-left: 14px;
    position: relative;
}

.footer_top_left h3:before{
    content: '';
    width: 4px;
    height: 18px;
    background: #ffffff;
    position: absolute;
    top: 4px;
    left: 0;
}

.footer_top_left p{
    color: #ffffff;
    font-size:14px;
    margin-bottom: 24px;
}

/* 页尾右边 */
.footer_top_right{
    width: 660px;
    margin-top: 30px;
    color: #ffffff;
    font-size:18px;
    padding-left: 129px;
    background-color: #383838;
}

.footer_top_right h3{
    color: #ffffff;
    font-size:18px;
    font-weight: bold; 
    margin-bottom: 26px;
    padding-left: 14px;
    position: relative;
}

.footer_top_right h3:before{
    content: '';
    width: 4px;
    height: 18px;
    background: #ffffff;
    position: absolute;
    top: 4px;
    left: 0;
}

.footer_top_right ul{
    width: 660px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer_top_right ul::after{
    content: '';
    width: 130px;
}

.footer_top_right ul li{
    width: 130px;
    /* background-color: blueviolet; */
    margin-bottom: 16px;
}

.footer_top_right ul li a{
    color: #ffffff;
    font-size: 14px;
}
.footer_top_right ul li a:hover{
    color: #EE4242;
}

/* 页尾底部 */
.footer_bottom{
    width: 100%;
    height: 216px;
    padding-top: 30px;
    background-color: #272727;
}

.footer_bottom p{
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    padding-bottom: 10px;
}

.footer_bottom p>a{
    color: #ffffff;
}
.footer_bottom p>a:hover{
    color: #F85959;
}

.footer_bottom_img{
    width: 100%;
    height: 40px;
    margin: 0 auto;
    text-align: center;
    margin-top: 16px;
}
/********************** 页尾 end **********************/


/*右边导航*/

.kefubox {
	position:fixed;
	top:8%;
	right:8px;
	z-index:99999;
	transform:translateY(200px);
}
.kefubox .main {
	width:60px;
	background:#fff;
	border:1px solid #f2f2f2;
	box-shadow:0 0 15px #e4e4e4;
	box-sizing:border-box;
}
.kefubox .cursor_default {
	cursor:default;
}
.kefubox .floor {
	border-bottom:1px solid #f2f2f2;
	position:relative;
	box-sizing:border-box;
}

.kefubox .floor .tellink {
	background-image:url("../../images/dianhua.png");
}
.kefubox .floor .qeh {
	background-image:url("../../images/mcrm.png");
}
.kefubox .floor .mobile {
	background-image:url("../../images/mobile.png");
}
.kefubox .floor .wxgzh {
	background-image:url("../../images/wxgzh.png");
}
.kefubox .floor .ysmc {
background-image:url("../../logo/z-blog-solid-rounded2.png");
}
.kefubox .floor > div {
	transform:translateX(300px);
}
.kefubox .floor:hover div {
	transition:all 300ms linear;
	transform:translateX(0);
}
.kefubox .floor .absbox {
	position:absolute;
	right:60px;
	top:0;
	z-index:3;
}
.kefubox .floor .back {
	box-shadow:0 0 15px #e4e4e4;
	height:50px;
	width:120px;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:12px;
	color:#666;
	background:#fff;
	box-sizing:border-box;
}
.kefubox .floor .kftel {
	cursor:default;
	box-shadow:0 0 15px #e4e4e4;
	height:60px;
	font-weight:500;
	width:150px;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:16px;
	color:#666;
	background:#fff;
	box-sizing:border-box;
}
.kefubox .floor .erweima {
	box-shadow:0 0 15px #e4e4e4;
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	justify-content:center;
	padding:15px;
	font-size:12px;
	color:#666;
	background:#fff;
	box-sizing:border-box;
}
.kefubox .floor .erweima img {
	width:140px;
	height:140px;
}
.kefubox .floor .erweima p {
	width:140px;
	padding:5px 0;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:14px;
}
.kefubox .floor > a {
	width:60px;
	height:60px;
	z-index:9999;
	background-position:center center;
	background-size:25px 25px;
	background-repeat:no-repeat;
	display:flex;
	align-items:center;
	justify-content:center;
}
.kefubox .floor > a:hover {
	transition:all 300ms linear;
	background-color:#e4e4e4;
	transform:scale(1.1);
}
.kefubox .floor > a img {
	height:25px;
	width:25px;
	display:block;
}
.kefubox .floor > a img:hover {
	transition:all 300ms linear;
	transform:scale(1.3);
}
.kefubox .floor:last-child {
	border-bottom:none;
}
/*html{*/
/*-webkit-filter:grayscale(100%);*/
/*-moz-filter:grayscale(100%);*/
/*-ms-filter:grayscale(100%);*/
/*-o-filter:grayscale(100%);*/
/*filter:grayscale(100%);*/
/*filter:gray;*/
/*}*/
