body, html{
    min-height:100%;
    width:100%;
}
html{
    -ms-text-size-adjust:100%;
    -webkit-text-size-adjust:100%
}
body{
    margin:0;
    color:#333;
    font-family:Arial, '微软雅黑', '宋体';
    font-size:14px;
    background:#fff;
}
img{max-width:100%;}
/*颜色*/
.c0,a.c0{color:#000;}
.c1,a.c1{color:#e40011;}
.c2,a.c2{color:#12cb63;}
.c3,a.c3{color:#20a6ea;}
/*header*/
#header{
    width:100%;
    z-index: 4;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    clear:both;
    position:relative;
    /*position: fixed;*/
}
#header .logo{
    top:0;
    height:60px;
    line-height:60px;
    text-align:center;
    background:#fff;
    float:left;
    margin-left:20px;
}
#header .logo img{
    height:40px;
    width:auto;
}

#header .nav{
    line-height:60px;
    float:right;
}
#header .nav ul{

}
#header .nav ul li{
    text-align:center;
    position:relative;
    width:120px;
}
#header .nav ul li a{
    display:block;
    font-size:14px;
    font-weight:bold;
    color:#000;
    position:relative;
}
#header .nav ul li:hover a{
    color:#e40011;
}
#header .nav ul li.hnavmore:hover ul li a{
    color:#000;
    line-height:36px;
}
#header .nav ul li a.head_tit i.fa-caret-down{
    color:#666;
    margin-left:6px;
}

#header .nav ul li:not(.active):hover a.head_tit i.fa-caret-down{
    color:#e40011;
    transform:rotate(180deg);
    animation:head_caret 0.2s;
    animation-iteration-count:1;
}

@keyframes head_caret
{
    from  {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(180deg);
    }
}


#header .nav ul li.active a.head_tit{
    color:#fff;
    background:#e40011;
}

#header .nav ul li.active a.head_tit  i.fa-caret-down{
    color:#fff;
    transform:rotate(180deg);
}
#header .nav ul li.hnavmore{}
#header .nav ul li.hnavmore ul{
    /*margin:0 10px;*/
    padding: 6px 0;
    position: absolute;
    height: auto;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    display: none;
}
#header .nav ul li.hnavmore:hover ul{
    display:block;
}
#header .nav ul li.hnavmore:hover ul a{
    font-weight:normal;
    font-size:12px;
}

#header .nav ul li.hnavmore ul li.active a{
    color:#e40011;
    background:none;
}
#header .nav ul li.hnavmore ul li a:hover{
    background:#e40011;
    color:#fff;
}
/*底部*/
#footer{
    background: #282828;
    padding:20px 0;
    line-height:16px;
    width:100%;
}
#footer,#footer a{color: #666;}
.copyright{text-align:center; font-size:12px;}
.copyright span{display:inline-block;padding:0 10px;}
.copyright span:not(:last-child){border-right:1px rgba(255,255,255,0.1) solid}
.copyright a{display:inline-block;color:inherit}
.copyright a.police{background:url("../images/icon-police.png") no-repeat left center;padding-left:20px;}

.footer_fixed{position:fixed;bottom:0;width:100%;}
/*首页*/
.swiper-index {
    /*position:absolute;*/
    /*top:60px;*/
    left:0;
    bottom:0;
    width: 100%;
    position: relative;
}
.swiper-index .swiper-slide {
    font-size: 18px;
    color:#fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position:relative;
}


.swiper-index>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction{
    text-align:right;
    padding-right:10px;
}
.swiper-index .swiper-pagination-bullet{
    background-color:#fff;
}

.swiper-index .img{text-align:center;}
.swiper-index .img img{max-width:100%;max-height:100%;display:block;}
.tabs-news{
    text-align: center;
    line-height: 44px;
    border-bottom: 1px #eeeeee solid;
}
.tabs-news a{
    display: inline-block;
    padding: 0 20px;
    position: relative;
}
.tabs-news a.active:after{
    content: "";
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid #e40011;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-top: -4px;
    margin-left: -4px;
}
/**/
.heyin_set{
    position:absolute;
    z-index:2;
    bottom:40px;
    width:100%;
    left:0;
}

.heyin_set .flex_auto{

}

.heyin_set .flex_auto ul li{
    flex:1;
    margin-right:6px;
}

.heyin_set a{
    height:100px;
    border-radius:4px;
    box-shadow:0 0 10px rgba(0,0,0,0.2);
    position:relative;
}

.heyin_set a:hover{
    top:-10px;
    color:#e40011;
}

.heyin_set .flex_auto a{
    display:block;
    padding:10px;
    position:relative;
    overflow:hidden;
    background:#fff no-repeat bottom right;
    background-size:auto 100%;
}
.heyin_set .flex_auto a i.fa{
    position:absolute;
    right:10px;
    bottom:10px;
    width:26px;
    height:26px;
    line-height:22px;
    text-align:center;
    border:2px #e40011 solid;
    color:#e40011;
    border-radius:50%;
    font-size:16px;
    display:none;
}
.heyin_set .flex_auto a:hover i.fa{
    display:block;
    animation:set_more 1s;
    animation-iteration-count:1;
}
@keyframes set_more
{
    from  {
        filter: alpha(opacity=0);opacity: 0;
        right:-26px;
    }
    to {
        filter: alpha(opacity=1);opacity: 1;
        right:10px;
    }
}

.heyin_set .flex_auto h3{
   font-size:15px;
    margin-bottom:2px;
    color:#957152;
}
.heyin_set .flex_auto p{
   color:#bbb;
    font-size:10px;
}
.heyin_set .service a{
    background:#e40011;
    color:#fff;
    width:100px;
    text-align:center;
}
.heyin_set .service i.fa{
   font-size:26px;
    margin-bottom:6px;
}
/*内页*/
.main_banner{
    text-align:center;
    height:220px;
    position:relative;
    background:#f01828 no-repeat center bottom;
    background-size:1920px auto;
    text-transform : uppercase;
    overflow:hidden;
}
.main_banner:after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.1);
}
.main_banner .main_content{
    position:absolute;
    width:100%;
    bottom:50px;
    left:0;
    border-bottom:10px;
    color:#fff;
    line-height:1;
    letter-spacing:6px;
    z-index:2;
}
.main_banner .main_content h1{
    font-size:20px;
    letter-spacing:0px;
    font-weight:normal;
}
.main_banner .main_content h1 span{
    display:inline-block;
    padding:6px 10px;
    border-radius:0px;
    border:1px #fff solid;
}

.main_banner .main_content h2{
    font-family: Impact;
    font-weight:normal;
    font-size:70px;
}
/*内容*/
.main{padding:10px 0;}
.main_menu{
    line-height:44px;
    border-bottom:1px #eeeeee solid;
    text-align:center;
    position:relative;
    background:#fff;
    overflow:hidden;
}
.main_menu ul{overflow:hidden;white-space:nowrap;}
.main_menu ul li{display:inline-block}
.main_menu ul li a{
    display:inline-block;
    font-weight:700;
    padding:0 20px;

}
.main_menu ul li.active a{
    position: relative;
    color:#e40011;
}
.main_menu ul li:hover a{
    color:#e40011;
}
.main_menu ul li.active a:before{
    content: "";
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid #e40011;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-top: -4px;
    margin-left: -4px;
}
.main_menu .line_active{
    position:absolute;
    bottom:0;
    display: none;
}
.main_menu .line_active:after{
    content:"";
    border-left:4px solid transparent;
    border-right:4px solid transparent;
    border-bottom:6px solid #e40011;
    position:absolute;
    bottom:0;
    left:50%;
    margin-top:-4px;
    margin-left: -4px;
}

.main_menu_hover{
    position:fixed;
    width:100%;
    top:0;
    z-index:10;
}

.mume_top{
    margin-top:45px;
}
.hy_msnr{
    line-height:36px;
    background-size:auto 100%;
    padding:40px 0;
    font-weight:bold;
}
.hy_msnr b{
    color:#e40011;
}
/**/
.hy_title{font-size:32px;margin:30px auto;text-align:center}
.hy_yzs{
    text-align:center;
    color:#fff;
    overflow:hidden;}
.hy_yzs h3{}
.hy_yzs .img{height:460px;}
.hy_yzs img{height:100%;width:auto;}

/**/
.hy_xxd{margin-bottom:40px;}
.hy_xxd ul{overflow:hidden}
.hy_xxd ul li{float:left;width:20%;text-align:center;margin-bottom:20px;}
.hy_xxd ul li span{
    width:60px;height:60px;border:1px #eeeeee solid;border-radius:100px;display:inline-block;
    display: flex;
    display: -webkit-flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 10px;
}
.hy_xxd ul li span img{width:32px;height:32px;margin:0 auto;}
.hy_xxd_nr{font-size:16px;line-height:1.8em;margin-top:20px;}

.hy_tczz{margin-top:40px;}

.store_box{margin-bottom:60px;display:none}
.store_box ul{overflow:hidden;margin-top:20px;}
.store_box ul li{margin-bottom:10px;width:calc( (100% + 0px) /2 - 20px);float:left;}
.store_box ul li:not(:nth-child(2n)){margin-right:40px;}
.store_box ul li a{display:block;border-bottom:1px #eeeeee solid;padding:0 0px 10px;}
.store_box ul li h3{margin-bottom:6px;}
.store_box ul li p{color:#999;}
.store_box ul li p i.fa{color:#e40011;margin-right:10px;}

.stores_cooperation{overflow:hidden;padding:10px 10px 0;background:#000;margin:-10px 0;}
.stores_cooperation canvas{display:block;margin:0 auto 10px;}
#stores_cooperation img{float:left;width:50%;display:block;overflow:hidden;margin-bottom:10px;}
/*专题*/
.special_nr{
    padding:20px;
    border-top:3px #e40011 solid;
    color:#333;
    background:#fff;
    font-size:14px;
}
.special_nr h3{margin-top:10px;font-size:16px;margin-bottom:6px;color:#e40011;}

.special_list{margin-top:10px;}
.special_list ul li{border-bottom:1px #eee solid;position:relative}
.special_list ul li{position:relative;}
.special_list ul li  a{padding:10px;}

.special_list ul li a.live_btn{
    background:rgba(0,0,0,0.7);
    color:#fff;
    position:absolute;
    bottom:14px;
    left:14px;
    padding:4px 10px;
    border-radius:4px;
}
.special_list ul li a.live_btn .fa{margin-right:6px;}
.special_list ul li .img{float:left;margin-right:20px;position:relative}
.special_list ul li .img img{height:120px;width:auto}
.special_list ul li .img .hot{
    position:absolute;
    left:0;
    top:0;
    background:#ffac28;
    color:#000;
    display:inline-block;
    padding:0 20px 0 10px;
    line-height:28px;
    border-radius:0 0 100px 0;
}
.special_list ul li .cont{
    padding:0;

}
.special_list ul li .cont h3{font-size:16px;margin-bottom:10px;width:100%;}
.special_list ul li .cont p{font-size:14px;color:#666;width:100%;}
.special_list ul li .cont p.more{}
.special_list ul li .cont p.more  i.fa{margin-left:6px;font-size:16px;color:#e40011}
.special_list ul li .cont p.more span.time{color:#999;}
.special_list ul li  a:hover{box-shadow:0 0 10px rgba(0,0,0,0.3);border-bottom:none;border-radius:4px;z-index:2}
.special_list ul li  a:hover  .cont p.more{color:#e40011}
.special_list ul li  a:hover  .cont h3{color:#e40011;}

.top_btn{
    width:48px;
    height:48px;
    line-height:48px;
    text-align:center;
    background:rgba(0, 0, 0, 0.7);
    color:#fff;
    position:fixed;
    right:20px;
    bottom:100px;
    border-radius:100px;
    font-size:26px;
    display:none;
}
.top_btn .fa{position:relative;top:-2px;}

/*中心工厂*/
.zygchz_nr{margin:20px auto;}
.zygchz_nr h1{margin-bottom:10px;color:#e40011}
.zygchz_nr p{margin-bottom:20px;}
.zygchz_nr img{width:600px;margin:0 auto;display: block;margin-bottom:20px;}


/*产品招商*/
@font-face {
    font-family:方正准圆_GBK;
    /*src: url("../fonts/方正准圆_GBK.TTF");*/
}
.main_wrap{
    max-width: 1200px;
    margin: 0 auto;
}
.cooperation_product_con{

}
.part_title{
    text-align: center;
}
.part_title h3{
    font-size: 20px;
    color: #e72811;
    text-align: center;
    margin:20px 0;
    font-weight: normal;
    /*font-family: '方正准圆_GBK';*/
    position: relative;
}
.part_title h3:after{
    content: "";
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: #95979b;
    bottom: -10px;
    left: 50%;
    margin-left: -13px;
    opacity: 0.4;
}
.part_title p{
    color: #717171;
}
.part_title .title_second{
    font-size: 16px;
}
.sub_title{
    text-transform:uppercase;
    margin: 5px 0;
}
.classify_pro{
    text-align: center;
    margin: 30px 0 60px 0;
}
.classify_pro ul{
    display: inline-block;
    margin:0 auto;
}
.classify_pro ul li {
    width: 160px;
    text-align: center;
    float: left;
}
.classify_pro ul li p{
    margin-top: 5px;
}
.contact{
    text-align: center;
    margin:40px 0;
}
.contact-c{
    display: inline-block;
    padding:20px 50px;
    -webkit-box-shadow: 0 0 20px 4px #e6e4e4;
    -moz-box-shadow: 0 0 20px 4px #e6e4e4;
    box-shadow: 0 0 20px 4px #e6e4e4;
}
.contact-c p{
    font-size: 14px;
    font-weight: bold;
    color: #717171;
}
.contact-c  .tel{
    color: #e72811;
    font-size: 20px;
    font-weight: bold;
    margin-top: 6px;
}
.contact-c .tel img{
    position: relative;
    top: -2px;margin-right: 8px;
}
/*供应链招商*/
.flex_bj{
    display: flex;
}
.flex_1{
    flex:1;
}
.gyl_product_con{
    padding-top: 30px;
}
.gyl .indro{
    margin-left: 30px;
    color: #737171;
}
.gyl .indro h3{
    font-size: 18px;
    color: #e72811;
    font-weight: normal;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.gyl .indro p{
    line-height: 24px;
}
.gyl .indro h3:after{
    position: absolute;
    content: "";
    width: 25px;
    height: 2px;
    background-color: #95979b;
    opacity: 0.4;
    left: 0;
    bottom: 0;
}
.font_r{
    color: #e72811;
}
.gyl .indro h4{
    font-size: 16px;
    font-weight: normal;
    position: relative;
    left: -7px;
    margin-bottom: 6px;
 }
.gyl .indro .service{
    margin-top: 44px;
}

.gyl .indro .service p{
    color: #999;
}
/*服务体系*/
/*1电商服务*/
.service_system{
    padding-top: 10px;
}
.service_top{
    padding: 35px 50px;
    -webkit-box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.17);
    -moz-box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.17);
    box-shadow:0 8px 20px 0px rgba(0, 0, 0, 0.17);
    text-align: center;
    border-top: 4px solid #e72811;
}
.service_top h1{
    color: #e72811;
    margin-bottom: 5px;
    font-size: 20px;
}
.service_top p{
    color: #999;
    font-size: 14px;
    line-height: 22px;
}
.service_lb{
    padding: 15px 0 50px 0;
    background-color: #f3f3f3;
    margin: 55px 0;
    color: #999;
}
.service_lb_wrap{
    max-width: 800px;
}
.service_lb_c{
    margin-top: 35px;
}
.service_lb_c li{
    text-align: center;
}
.service_lb_c li img:nth-child(2){
    display: none;
}
.service_lb_c li:hover img:nth-child(2){
    display: inline-block;
}
.service_lb_c li:hover img:first-child{
    display: none;
}
.service_lb_c li p{
    margin-top: 10px;
}
.fn_items{
    padding: 25px 0 35px 0;
}
.fn_items ul{
    overflow: hidden;
    margin-bottom: 20px;
}
.fn_items .top-line{
    height: 320px;
}
.fn_items .line{
    height: 220px;
}
.fn_items ul li{
    width: 50%;float: left;height: 100%;
}
.fn_items ul li .img{
    width: 100%;
}
.table_bj{
    width: 100%;display: table;height: 100%;
}
.table_cell{
    display: table-cell;vertical-align: middle;
}
.fn_items ul li .desc>div{
   padding: 0 20px;
    background-color: #f3f3f3;
}
.fn_items ul li .desc>div h2{
    color: #e72811;
    position: relative;
}
.fn_items .top-line li .desc>div h2{
    margin-bottom: 30px;
}
.fn_items .top-line li .desc>div h2:after{
    content: "";
    position: absolute;
    width: 22px;
    height: 2px;
    background-color: #95979b;
    left:0;
    bottom:-10px;
    opacity: 0.4;
}
.fn_items ul li .desc>div P{
    color: #999;
    margin-top: 6px;
}
.fn_items ul li .img_w{
    width: 360px;float: left;
}
.fn_items .line li .desc{
    width: 220px;float: left;
}
.fn_items .line li:nth-child(even){
    padding-left: 20px;
}


/*商学院服务*/
.class_model_c ul{
    overflow: hidden;
    padding-top: 10px;
    padding-bottom: 80px;
}
.class_model_c ul li{
    width: 384px;
    margin-right: 24px;
    text-align: center;
    float: left;
}
.class_model_c ul li:last-child{
    margin-right: 0;
}
.class_model_c h2{
    margin-top: 10px;
}
.class_model_c p{
    color: #999;
}
.training{
    height: 556px;
    padding-top: 35px;
    background-image: url(../images/training-bg.jpg);
}
.part_title.white h3{
    color: #fff;
}
.training .part_title h3:after{
    background-color: #fff;
    opacity: 0.8;
}
.training_c ul li{
    width: 20%;
    float: left;
    position: relative;
}
.training_c ul li:nth-child(odd){
    cursor: pointer;
}
.hover_c{
    position: absolute;
    top:0;
    bottom:0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    color: #999999;
    font-size: 12px;
    line-height: 20px;
    padding:0 10px;
   opacity: 0;
    transition:  all 0.3s;
    box-shadow:  0 0 14px 2px #4c4c4c;
    z-index: 1;
}
.training_c ul li:hover .hover_c{
    opacity: 1;
    transition:  all 0.5s;
}
.schedule{
    padding:55px 0;
}
.contract_school{
    position: fixed;
    top: 400px;
    right: 0;
}
.phone_icon{
    position: relative;
    z-index: 3;
}
.phone_icon:after{
    content: "";
    position: absolute;
    width:0;
    height:0;
    border-top:10px solid transparent;
    border-bottom:10px solid transparent;
    border-left:10px solid #fff;
    top:50%;
    margin-top: -5px;
    left: 0;
}
.contract_per{
    position: absolute;
    right: 40px;
    top: 0;
    box-shadow:0px 0px 13px 0px #dedddd;
    z-index: 2;
}
.contract_per ul li{
    height: 50px;
    width: 145px;
    background-color: #ffffff;
    border-bottom: 1px solid #f3f3f3;
    padding: 5px;
}
.contract_per ul li:first-child{
    border-right: 0;
}
.contract_per li>div{
    color: #999;
    padding:0 0 0 10px;
}
.brand_service{
    height: 596px;
    background-image: url("../images/brand_bg.jpg");
    padding-top: 10px;
}
.brand_service_c{
    margin-top: 35px;
}
.w_1220{
    max-width: 1220px;
}
.brand_service_c ul li{
    padding:0 10px;
    height: 455px;
    width: 25%;
    float: left;
}
.brand_service_c .item{
    height: 100%;
    background-color: #fff;
}
.brand_service_c .item h2{
    text-align: center;
    position: relative;
    margin-top: 12px;
    color: #f21414;
}
.title_xhx{
    position: relative;
}
.title_xhx:after{
    content: "";
    position: absolute;
    width: 22px;
    height: 2px;
    background-color: #95979b;
    bottom: -10px;
    left: 50%;
    margin-left: -11px;
    opacity: 0.4;
}
.title_xhx_left:after{
    left: 0;
    margin-left: 0;
}
.brand_service_c .item p{
    padding: 15px;
    color: #999;
}

/*供应链服务*/
.chain_resp{
    padding:20px 0 70px 0;
}
.chain_resp ul{
    overflow: hidden;
}
.chain_resp ul li{
    width: 20%;
    height: 480px;
    padding:0 10px;
    float: left;
}
.chain_item{
    height: 100%;
}
.chain_item h2{
    color: #f21414;
    padding: 5px 0;
}
.chain_item p{
    color: #999;
    font-size: 12px;
}
.chain_fn_wrap{
    padding-bottom: 60px;
}
.chain_fn_wrap p{
    font-size: 12px;
    color: #999;
}
/*产品服务*/
.service_pro{
    padding:30px 0 50px 0;
}
.service_pro h2{
    position: relative;
    color: #f21414;
}
.service_pro h2.title_xhx:after{
    left: 0;
    margin-left: 0;
}
.service_pro .part:not(:last-child){
    margin-bottom: 35px;
}
.circle{
    margin-right: 8px;
    display: inline-block;
    width: 6px;
    height: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background-color: #9b9c9e;
    position: relative;
    top: -2px;
}
.service_pro .part .txt{
    margin-top:20px;
}
.tl1{
    color: #717171;
    margin:5px 0;
}
.tl2{
    color: #9b9c9e;
    margin: 2px 0;
}
.tl3{
    font-size: 12px;
    color: #9b9c9e;
    margin:5px 0;
}
/*It服务*/
.department_resp_txt{
    padding:0 30px;
    line-height: 22px;
    background-color: #f3f3f3;
}
.department_resp_txt .part_title h3{
    margin:0 0 15px 0;
    font-weight: bold;
}
.it_fn{
    text-align: center;
    padding-top: 35px;
}
.it_fn .f18{
    color: #070707;
    margin: 25px 0 10px 0;
}
.it_erp{
    height: 536px;
    background-image: url("../images/it_bg.jpg");
    margin:50px 0;
    padding-top: 45px;
}
.it_erp .part_title h3{
    font-size: 16px;
}
.it_erp .part_title h3:after{
    background-color: #d1d1d1;
    opacity: 1;
    width: 22px;
}
.it_erp_c ul{
    overflow: hidden;
    padding-top: 20px;
}
.it_erp_c ul li{
    width: 25%;
    height: 380px;
    float: left;
    padding: 10px;
}
.it_erp_c ul li .item{
    background-color: #fff;
    text-align: center;
    height: 100%;
}
.it_erp_c ul li .item img{
    margin:63px 0 40px 0;
}
.it_erp_c ul li .item hr{
    width: 30px;
    height: 2px;
    background-color: #e72811;
    border:0;
    margin: 0 auto;
    margin-bottom: 15px;
}
.it_erp_c ul li .item p{
    color: #717171;
    font-size: 16px;
}
.it_erp_func .part_title h3{
    font-size: 16px;
    color: #717171;
}
.w_1230{
    max-width: 1230px;
}
.it_erp_func{
    margin-top: 25px;
}
.it_erp_func ul{
    overflow: hidden;
}
.it_erp_func ul li{
    width: 33.33%;
    float: left;
    padding: 15px;
}
.it_erp_func ul li .item{
    text-align: center;
    position: relative;
}
.it_erp_func ul li .item img{
  width: 100%;
}
.it_erp_func ul li .item>.title{
    height: 40px;
    line-height: 40px;
    text-align: center;
    border:1px solid #ebebeb;
    border-top: 0;
}
.it_erp_func ul li .item:hover .title{
    color: #e72811;
}
.it_erp_func ul li .item:hover .hover{
    display: block;
}
.it_erp_func ul li .item .hover{
    position: absolute;
    top:0;
    left: 0;
    bottom: 40px;
    right: 0;
    background: rgba(38,38,38,0.8);
    color: #fff;
    padding:0 15px;
    display: none;
}
.it_erp_func ul li .item .hover:after{
    content: "";
    width: 0;
    height: 0;
    border-width: 0 15px 15px;
    border-style: solid;
    border-color: transparent transparent #ffffff;
    bottom: 0;
    position: absolute;
    margin-left: -20px;
}
.it_service{
    height: 380px;
    background-image: url("../images/it_fw_bg.jpg");
}
.it_service_left{
    width: 620px;
    height: 100%;
    float: left;
    padding:120px 0 40px;
}
.it_service_left h2{
    font-size: 20px;
    color: #717171;
    font-weight: normal;
}
.it_service_left hr{
    border:0;
    margin:12px 0;
    height: 1px;
    background-color: #c6c6c6;
}
.it_service_left h3{
    font-size: 16px;
    color: #e72811;
    font-weight: normal;
    margin-bottom: 6px;
}
.it_service_left p{
    color: #999;
}
.erp_ss  .part_title h3{
    font-size: 16px;
}
.w_1240{
    max-width: 1240px;
}
.erp_ss{
    padding:22px 0 0 0;
}
.erp_ss ul{
    overflow: hidden;
}
.erp_ss ul li {
    width: 50%;
    padding:10px 20px;
    float: left;
}
.erp_ss ul li>div p{
    color: #717171;
    padding:20px 0;
    text-align: center;
}
hr{
    border:0;
    margin:12px 0;
    height: 1px;
    background-color: #ebebeb;
}
.erp_tz ul li{
    width: 33.33%;
    padding: 10px;
}
.erp_wh{
    background: #f5f5f5;
 }
.erp_wh .table_cell{
    padding:0 40px;
}
.erp_wh .table_cell h2{
    margin-bottom: 30px;
}

/*运营服务*/
.yy_department p{
    color: #999;
    width: 630px;
    font-size: 16px;
    text-align: center;
    margin: 0 auto;
}
.operating_fn{
    margin-top: 60px;
    margin-bottom: 170px;
    background: #f5f5f5;
    padding: 10px 0;
}
.operating_fn_txt{
    padding-bottom: 30px;
}
.operating_fn_txt h2{
    color: #717171;
    font-weight: normal;
}
.operating_fn_txt h2:not(:first-child){
    margin-top: 10px;
}
.operating_fn_txt img{
    margin-right: 35px;
}
.operating_fn_txt p{
    color: #999;
    line-height: 24px;
}
.operating_fn hr{
    background-color: #d1d1d1;
    height: 2px;
    margin:20px 0 188px 0;
}
.md_design{
    height: 538px;
    background-image: url("../images/yuny_02.jpg");
    background-position: center;
    background-repeat: no-repeat;
}
.font_red{
    color: #e72811;
}
.font-b{
    font-weight: bold;
}
.md_design .top{
    width: 500px;
    padding:40px 0 30px 0;
    text-align: center;
    background-color: #fff;
    margin:0 auto;
    position: relative;
    top:-100px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.md_design .top .f18{
    margin: 5px 0 15px 0;
}
.md_sj{
    height: 1035px;
    background-image: url("../images/yuny_tc.jpg");
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    padding-top: 70px;
}


/*主营业务*/
.equipment{
    margin-top: 80px;
}
.bg_gray{
    background-color: #f5f5f5;
}
.align_center{
    text-align: center;
}
.data_bg{
    background: url("../images/zyyw_data_bg.png");
    margin-bottom: 60px;
}
/*金融服务*/
.financial_service{
    margin:30px 0;
}

/*新闻*/
.brand_news{
    max-width: 1000px;
    margin:0 auto;
}
.bradn_news_w li{
    height: 140px;
    padding: 10px;
    border-bottom: 1px solid #ebebeb;
}
.bradn_news_w li:hover{
    border-bottom-color: transparent;
    -webkit-box-shadow:0 0 9px 2px rgba(0, 0, 0, 0.14);
    -moz-box-shadow: 0 0 9px 2px rgba(0, 0, 0, 0.14);
    box-shadow: 0 0 9px 2px rgba(0, 0, 0, 0.14);
}
.bradn_news_w li:hover h2{
    color: #e72811;
}
.bradn_news_w li:hover .more{
    color: #e72811;
}
.news_des{
    padding:0 20px;
    color: #999;
}
.news_des h2{
    color: #323232;
}
.news_des p{
    height: 75px;
    margin-top: 5px;
}
.news_des .fa-arrow-circle-right{
    margin-left: 10px;
    font-size: 16px;
}
.pagination{
    margin: 20px 0;
    text-align: center;
    line-height: 20px;
    user-select: none;
}

.pagination span{
    display: inline-block;
    height: 20px;
    line-height: 18px;
    padding:0 6px;
    border:1px solid #717171;
    margin-right:5px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-family: 宋体;
    color:#717171;
    cursor: pointer;
}
.pagination a:hover{
    color: #e72811;
}
.pagination span.active{
    color: #ffffff;
    background-color: #e72811;
    border-color: #e72811;
}
.pagination span a{
    display: inline-block;width: 100%;height: 100%;
}
.pagination span.active>a{
    color: #ffffff;
}
.pagination .un_clickabled{
    cursor: not-allowed;
}