/*全局渐变色*/
.gradient{
  background-image: linear-gradient(to right,#FFAD01,#FF8601);
  background-image: -moz-linear-gradient(left,#FFAD01,#FF8601);
  background-image: -o-linear-gradient(left,#FFAD01,#FF8601);
}
/*box-shadow*/
.shadow{
  -moz-box-shadow:0px 5px 20px #F7D29A;
  -webkit-box-shadow:0px 5px 20px #F7D29A;
  box-shadow:0px 5px 20px #F7D29A;
}
/*水平垂直居中*/
.midst{
  display: table;
  text-align: center;
}
.midst>span{
  display: table-cell;
  vertical-align: middle;
}
/*图片处理*/
.pic_img{
  max-width: 100%;
  width: 100%;
  vertical-align: bottom;
}
/*常用文字大小、颜色*/
.fs_14{
  font-size: 14px!important;
}
.fs_16{
  font-size: 16px!important;
}
.fs_18{
  font-size: 18px!important;
}
.color_f{
  color: #fff!important;
}
.color_3{
  color: #333!important;
}
.color_6{
  color: #666!important;
}
.color_9{
  color: #999!important;
}
/*常用内外间距*/
.mt_10{
  margin-top: 10px!important;
}
.mr_10{
  margin-right: 10px!important;
}
.mb_10{
  margin-bottom: 10px!important;
}
.ml_10{
  margin-left: 10px!important;
}
.mt_20{
  margin-top: 20px!important;
}
.mr_20{
  margin-right: 20px!important;
}
.mb_20{
  margin-bottom: 20px!important;
}
.ml_20{
  margin-left: 20px!important;
}
.pt_15{
  padding-top: 15px!important;
}
.pr_15{
  padding-right: 15px!important;
}
.pb_15{
  padding-bottom: 15px!important;
}
.pl_15{
  padding-left: 15px!important;
}
.text-right{
  text-align: right!important;
}
.text-center{
  text-align: center!important;
}
/*强制控制为本为一行，超出部分...*/
.text-1{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/*强制控制为本为两行，超出部分...*/
.text-2{
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
/*低版本警告框*/
.alert{
  padding: 50px;
  text-align: center;
  background: #ddd;
  font-size: 18px;
}
.alert b{
  color: #f00;
}
.alert a{
  color: #0086b3;
  text-decoration: underline;
}
/*-------首页------*/
html,body{
  font-size: 14px;
}
.wrap{
  width: 1200px;
  margin: 0 auto;
}
.header .top{
  height: 40px;
  line-height: 40px;
  background: #F7F6F4;
  color: #696969;
  overflow: hidden;
}
.header .top a{
  color: #8c8c8c;
  margin-left: 32px;
}
.header .top .icon-geren{
  font-size: 14px;
}
.header .top .iconfont{
  margin-right: 5px;
}
.header .top a:hover{
  color: #ff8400;
}
.header .middle{
  height: 113px;
}
.header .middle .logo{
  margin-top: 15px;
}
.header .middle .search_box{
  margin-top: 35px;
}
.header .middle .search{
  border: 1px solid #FFA000;
  padding: 10px;
}
.header .middle .search .filter{
  position: relative;
  color: #9c9c9c;
  width: 78px;
  height: 21px;
}
.header .middle .search .filter_box{
  cursor: pointer;
}
.header .middle .search .filter_dropdown{
  position: absolute;
  top: 32px;
  left: -11px;
  width: 100px;
  padding:10px 0;
  text-align: center;
  background: #FF8400;
  z-index: 10000;
  display: none;
}
.header .middle .search .filter_dropdown li{
  padding: 6px 11px;
  color: #fff;
  cursor: pointer;
}
.header .middle .search .filter_dropdown li:hover{
  background: #FFBE51;
}


.header .middle .search input{
  width: 212px;
  border: none;
  outline: none;
  padding: 0 10px;
}
.header .middle .search_btn button{
  width: 86px;
  height: 43px;
  color: #fff;
  border: none;
  outline: none;
  margin-left: -1px;
  cursor: pointer;
}
.header .bottom{
  height: 45px;
  line-height: 45px;
}
.header .bottom .course{
  float: left;
  width: 216px;
  position: relative;
}
.header .bottom .course>p,.header .bottom .course>a{
  display: block;
  text-align: center;
  color: #fff;
  font-size: 16px;
  background: #FF7200;
}
.header .bottom .course_list{
  position: absolute;
  top: 45px;
  left: 0;
  width: 216px;
  height: 489px;
  overflow: hidden;
  background: #fff;
  z-index: 1000;
}
.header .bottom .course_list li{
  margin-top: 4px;
}
.header .bottom .course_list a{
  display: block;
  height: 45px;
  line-height: 45px;
  padding:0 16px 0 45px;
  color: #5F5F5F;
}
.header .bottom .course_list .color{
  color: #FF8400;
  margin-right: 20px;
}
.header .bottom .course_list .right{
  float: right;
  margin-top: 1px;
  color: #B4B4B4;
}
.header .bottom .course_list a:hover{
  background-image: linear-gradient(to right,#FFAD01,#FF8601);
  background-image: -moz-linear-gradient(left,#FFAD01,#FF8601);
  background-image: -o-linear-gradient(left,#FFAD01,#FF8601);
  color: #fff;
  transform: translate(4px,-2px);
  transition: transform .3s linear;
}
.header .bottom .course_list a:hover .color{
  color: #fff;
}
.header .bottom .course_list a:hover .right{
  color: #fff;
}
.header .bottom .navbar{
  float: left;
}
.header .bottom .navbar li{
  float: left;
}
.header .bottom .navbar li>a{
  display: block;
  width: 123px;
  height: 45px;
  font-size: 16px;
  text-align: center;
  color: #fff;
}
.header .bottom .navbar li>a:hover,.header .bottom .navbar li>a.active{
  background: #FF7200;
}
/*banner*/
#banner{
  position:relative;
  height:489px;
}
.banner{
  position:relative;
  height:489px;
  top:0;
  text-align:center;
  z-index:1;
  background-repeat: no-repeat;
  background-position: center 0;
}
.banner:hover {cursor:pointer;}
.banner2{
  position:absolute;
  top:0;
  left:auto;
  width:100%;
  height:489px;
  z-index:0;
}
.bannerWrap{
  position:relative;
  bottom:30px;
  width:100%;
  overflow:auto;
  margin:0 auto;
  z-index:3;
  text-align: center;
}
.bannerWrap ul.showList{
  display: inline-block;
}
.bannerWrap ul.showList li{
  width:10px;
  height:10px;
  background:#fff;
  margin:8px;
  float:left;
  border-radius: 50%;
  cursor: pointer;
}
.bannerWrap ul.showList li.special{
  background:#FE9A02;
}
.login_box{
  position: absolute;
  top: 50px;
  left: 50%;
  margin-left: 446px;
  width: 154px;
  height: 373px;
  padding-top: 16px;
  background: #fff;
  z-index: 100;
  text-align: center;
}
.login_box .avater img{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px;
}
.login_box p{
  font-size: 12px;
  color: #9c9c9c;
  line-height: 16px;
}
.login_box .btn_group1{
  margin-top: 20px;
}
.login_box .btn_group1 a{
  display: block;
  width: 108px;
  height: 32px;
  line-height: 32px;
  border: 1px solid #FF8400;
  text-align: center;
  color: #ff8400;
  margin: 12px auto;
}
.login_box .btn_group1 a:hover{
  width: 110px;
  height: 34px;
  line-height: 34px;
  border: none;
  background-image: linear-gradient(to right,#FFAD01,#FF8601);
  background-image: -moz-linear-gradient(left,#FFAD01,#FF8601);
  background-image: -o-linear-gradient(left,#FFAD01,#FF8601);
  color: #fff;
}
.login_box .btn_group2 a{
  display: block;
  line-height: 30px;
  color: #a5a5a5;
}
.login_box .btn_group2 a .iconfont{
  margin-right: 8px;
}
.login_box .btn_group2 a:hover{
  color: #ff8500;
}
/*企业文化*/
.firm_culture{
  height: 225px;
  padding-top: 36px;
}
.firm_culture .intr_box{
  height: 200px;
  overflow: hidden;
}
.firm_culture .intr{
  height: 200px;
}
.firm_culture .intr li{
  float: left;
  width: 320px;
  padding: 0 15px;
  text-align: center;
}
.firm_culture .intr li.center{
  width: 470px;
}
.firm_culture .intr h3{
  font-size: 22px;
  color: #fff;
  margin-bottom: 16px;
}
.firm_culture .intr p{
  color: #fff;
  line-height: 25px;
}
/*专家智库*/
.think_tank{
  background: #F7F6F4;
  padding-bottom: 40px;
}
.index_title{
  padding: 60px 0 30px 0;
  text-align: center;
}
.index_title h3{
  font-size: 32px;
  color: #303030;
}
.index_title span{
  display: block;
  width: 40px;
  height: 4px;
  margin: 16px auto;
}
.index_title p{
  font-size: 16px;
  color: #696969;
}
.think_tank .type_list li{
  float: left;
}
.think_tank .type_list li>a{
  display: block;
  width: 132px;
  height: 43px;
  line-height: 43px;
  border: 1px solid #ff8400;
  color: #ff8400;
  font-size: 18px;
  text-align: center;
  border-radius: 22px;
  margin-right: 43px;
}
.think_tank .type_list li.last>a{
  margin: 0;
}
.think_tank .type_list li>a:hover,.think_tank .type_list li>a.active{
  width: 134px;
  height: 45px;
  border: none;
  color: #fff;
  background-image: linear-gradient(to right,#FFAD01,#FF8601);
  background-image: -moz-linear-gradient(left,#FFAD01,#FF8601);
  background-image: -o-linear-gradient(left,#FFAD01,#FF8601);
  -moz-box-shadow:0px 5px 20px #F7DCB4;
  -webkit-box-shadow:0px 5px 20px #F7DCB4;
  box-shadow:0px 5px 20px #F7DCB4;
}
.think_tank .lecturer_list{
  margin-top: 50px;
}
.think_tank .lecturer_list li{
  float: left;
  margin: 0 40px 33px 0;
}
.think_tank .lecturer_list li:nth-child(4n){
  margin-right: 0;
}
.think_tank .lecturer_list li>a{
  display: block;
  width: 270px;
  height:450px;
  background: #fff;
  transition: all .3s ease-in-out;
}
.think_tank .lecturer_list .img{
  width: 270px;
  height: 270px;
  overflow: hidden;
}
.think_tank .lecturer_list .text{
  padding: 15px;
}
.think_tank .lecturer_list .name span{
  font-size: 22px;
  color: #2f2f2f;
  margin-right: 5px;
}
.think_tank .lecturer_list .name .iconfont{
  color: #FF8400;
  font-size: 14px;
  vertical-align: text-top;
}
.think_tank .lecturer_list .icon_group{
  margin: 20px 0;
}
.think_tank .lecturer_list .icon_group .iconfont{
  display:inline-block;
  width:18px;
  height:18px;
  padding: 6px;
  border: 1px solid #C1C1C1;
  border-radius: 50%;
  background: #C1C1C1;
  color: #fff;
  margin-right: 6px;
  text-align:center;
}
.think_tank .lecturer_list .icon_group .iconfont.light{
  border-color: #FF8400;
  background: transparent;
  color: #FF8400;
}
.think_tank .lecturer_list .text-1,.think_tank .lecturer_list .skill{
  color: #848484;
  line-height: 24px;
}
.think_tank .lecturer_list li>a:hover{
  -moz-box-shadow:0px 5px 20px #F7E5D0;
  -webkit-box-shadow:0px 5px 20px #F7E5D0;
  box-shadow:0px 5px 20px #F7E5D0;
  transform: translate(3px,-3px);
  transition: all .3s ease-in-out;
}
.think_tank .more_lecturer{
  display: block;
  width: 196px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 22px;
  color: #fff;
  font-size: 16px;
  margin: 20px auto;
}
/*服务*/
.service{

}
.service_list .left{
  width: 388px;
  margin-right: 35px;
}
.service_list .box_item {
  border: 1px solid #F4F4F4;
}
.service_list .box_item .title{
  padding: 20px 15px;
  position: relative;
  border-bottom: 1px solid #F4F4F4;
}
.service_list .box_item .title span{
  position: absolute;
  top: 24px;
  left: -2px;
  width: 4px;
  height: 24px;
  background-image: linear-gradient(to bottom,#FFAF01,#FF8500);
  background-image: -moz-linear-gradient(top,#FFAD01,#FF8500);
  background-image: -o-linear-gradient(top,#FFAD01,#FF8500);
}
.service_list .box_item .title h3{
  font-size: 22px;
  color: #4b4b4b;
}
.service_list .box_item .title a{
  display: block;
  font-size: 16px;
  color: #ff8400;
  margin-top: 4px;
}
.service_list .list_group{
  padding: 20px 0;
}
.service_list .list_group a{
  display: block;
  padding: 15px;
}
.service_list .list_group p{
  font-size: 16px;
  color: #616161;
  width: 252px;
}
.service_list .list_group span{
  font-size: 16px;
  color: #aaa;
}
.service_list .list_group span.bein{
  color: #FF8A10;
}
.service_list .list_group a:hover p,.service_list .list_group a:hover span{
  color: #FF8400;
}
.service_list .box_item:hover{
  -moz-box-shadow:0px 5px 20px #FFF0DD;
  -webkit-box-shadow:0px 5px 20px #FFF0DD;
  box-shadow:0px 5px 20px #FFF0DD;
  border-color: transparent;
}
.service_list .right{
  width: 348px;
}
.service_list .rank_list{
  padding:14px 15px 15px 15px;
}
.service_list .rank_list li{
  padding: 13px 0;
}
.service_list .rank_list .rank i{
  display: inline-block;
  width: 27px;
  height: 38px;
  background: url("../images/iconlist.png") no-repeat;
  margin: 15px 18px 0 0;
}
.service_list .rank_list .rank i.first{
  background-position: -37px -15px;
}
.service_list .rank_list .rank i.second{
  background-position: -85px -15px;
}
.service_list .rank_list .rank i.three{
  background-position: -130px -15px;
}
.service_list .rank_list .rank i.four{
  font-style: normal;
  font-size: 24px;
  color: #ff8400;
  text-align: center;
  line-height: 38px;
}
.service_list .rank_list .pic{
  width: 66px;
  height: 66px;
  border-radius: 50%;
  overflow: hidden;
}
.service_list .rank_list .text{
  margin: 10px 0 0 16px;
}
.service_list .rank_list .text h3{
  font-size: 18px;
  color: #5d5d5d;
}
.service_list .rank_list .text p{
  color: #8b8a8a;
  margin-top: 6px;
}
/*历程*/
.process{
  height: 290px;
  margin-top:50px;
}
.process ul{

}
.process li{
  float: left;
  width: 399px;
  text-align: center;
  margin-top: 100px;
  border-right: 1px solid #FFBE51;
}
.process li.last{
  border-right: none;
  width: 400px;
}
.process li .has_sup{
  position: relative;
  display: inline-block;
}
.process li h2{
  font-size: 48px;
  color: #fff;
}
.process li sup{
  font-size: 16px;
  color: #fff;
  position: absolute;
  top: 15px;
  right: -12px;
}
.process li p{
  font-size: 16px;
  color: #fff;
}
/*平台聚合*/
.activity .list_group{
  padding: 20px 0 70px;
}
.activity .list_group li{
  float: left;
  width: 378px;
  margin-right: 30px;
  border: 1px solid #eee;
}
.activity .list_group li:last-child{
  margin-right: 0;
}
.activity .list_group li .pic{
  width: 379px;
  height: 248px;
  overflow: hidden;
}
.activity .list_group li .pic img{
  transition: all .3s ease-in-out;
}
.activity .list_group li h3{
  font-size: 20px;
  color: #303030;
  margin: 25px 0;
  text-align: center;
}
.activity .list_group li .btn_group{
  text-align: center;
  padding-bottom: 40px;
}
.activity .list_group li .btn_group a{
  display: inline-block;
  width: 96px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border:1px solid #ff8400;
  color: #ff8400;
  border-radius: 16px;
  margin:0 36px;
}
.activity .list_group li .btn_group a:hover{
  border-color: transparent;
  color: #fff;
  background-image: linear-gradient(to right,#FFAD01,#FF8601);
  background-image: -moz-linear-gradient(left,#FFAD01,#FF8601);
  background-image: -o-linear-gradient(left,#FFAD01,#FF8601);
  -moz-box-shadow:0px 5px 20px #F7DCB4;
  -webkit-box-shadow:0px 5px 20px #F7DCB4;
  box-shadow:0px 5px 20px #F7DCB4;
}
.activity .list_group li .btn_group span.over{
  display: inline-block;
  width: 98px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  background: #D6D6D6;
  color: #fff;
  border-radius: 17px;
  margin:0 36px;
}
.activity .list_group li:hover{
  -moz-box-shadow:0px 5px 20px #FFEFDC;
  -webkit-box-shadow:0px 5px 20px #FFEFDC;
  box-shadow:0px 5px 20px #FFEFDC;
  border-color: transparent;
}
.activity .list_group li:hover img{
  transform: scale(1.04);
  transition: all .3s ease-in-out;
}
/*商业资讯*/
.biz_news{
  background: #F7F6F4;
  padding-bottom: 50px;
}
.biz_news .type_list{
  text-align: center;
}
.biz_news .type_list>ul{
  display: inline-block;
}
.biz_news .type_list>ul li{
  float: left;
}
.biz_news .type_list li>a{
  display: block;
  width: 132px;
  height: 43px;
  line-height: 43px;
  border: 1px solid #ff8400;
  color: #ff8400;
  font-size: 18px;
  text-align: center;
  border-radius: 22px;
  margin-right: 43px;
}
.biz_news .type_list li>a:hover,.biz_news .type_list li>a.active{
  border-color: transparent;
  color: #fff;
  background-image: linear-gradient(to right,#FFAD01,#FF8601);
  background-image: -moz-linear-gradient(left,#FFAD01,#FF8601);
  background-image: -o-linear-gradient(left,#FFAD01,#FF8601);
  -moz-box-shadow:0px 5px 20px #F7DCB4;
  -webkit-box-shadow:0px 5px 20px #F7DCB4;
  box-shadow:0px 5px 20px #F7DCB4;
}
.biz_news .news_box{
  padding: 20px 0;
}
.biz_news .news_box li{
  float: left;
  width: 600px;
  margin: 20px 0;
}
.biz_news .news_box li>a{
  display: block;
  padding: 12px 20px;
}
.biz_news .issue_date{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #FF8400;
  text-align: center;
  color: #fff;
}
.biz_news .issue_date h3{
  font-size: 40px;
  padding-top: 10px;
}
.biz_news .issue_text{
  width: 440px;
}
.biz_news .issue_text h3{
  font-size: 18px;
  color: #232323;
}
.biz_news .issue_text p{
  color: #787878;
  line-height: 18px;
  margin: 10px 0;
}
.biz_news .issue_text .visit span{
  margin-right: 25px;
  color: #787878;
}
.biz_news .issue_text .visit .iconfont{
  font-size: 14px;
  margin-right: 6px;
}
.biz_news .news_box li>a:hover{
  background: #fff;
  -moz-box-shadow:0px 5px 20px #F7DCB4;
  -webkit-box-shadow:0px 5px 20px #F7DCB4;
  box-shadow:0px 5px 20px #F7DCB4;
}
.biz_news .news_box li>a:hover .visit span{
  color: #FF8400;
}
.biz_news .more_news{
  display: block;
  width: 132px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 22px;
  color: #fff;
  margin: 0 auto;
  font-size: 16px;
}
/*合作伙伴*/
#client_list{
  height: 370px;
  overflow: hidden;
}
#client_box{
  width: 800%;
}
.client_list{
  padding: 20px 0;
  float: left;
}
.client_list li{
  float: left;
  margin: 0 44px 0 0;
}
.client_list li .midst{
  width: 196px;
  height: 87px;
  border: 1px solid #E3E3E3;
  border-radius: 12px;
  margin: 0 0 34px 0;
}
.client_list li .midst:hover{
  border-color: transparent;
  -moz-box-shadow:0px 5px 20px #F7DCB4;
  -webkit-box-shadow:0px 5px 20px #F7DCB4;
  box-shadow:0px 5px 20px #F7DCB4;
}
/*关联网站*/
.relevance{
  background: #F7F6F4;
  padding: 50px 0;
  margin: 50px 0 0 0;
  text-align: center;
}
.relevance a{
  display: inline-block;
  width: 273px;
  height: 56px;
  background: #fff;
  text-align: center;
  line-height: 56px;
  font-size: 20px;
  color: #777777;
  border-radius: 6px;
  margin: 15px 18px;
}
.relevance a:hover{
  -moz-box-shadow:0px 5px 20px #F7DCB4;
  -webkit-box-shadow:0px 5px 20px #F7DCB4;
  box-shadow:0px 5px 20px #F7DCB4;
  background-image: linear-gradient(to right,#FFAD01,#FF8601);
  background-image: -moz-linear-gradient(left,#FFAD01,#FF8601);
  background-image: -o-linear-gradient(left,#FFAD01,#FF8601);
  color: #fff;
}
/*底部*/
.footer{
  padding-top: 60px;
}
.footer .foot_nav{

}
.footer .foot_nav>li{
  float: left;
  width: 140px;
}
.footer .foot_nav>li>a{
  display: inline-block;
  color: #777;
  margin-bottom: 30px;
}
.footer .foot_nav>li>a:hover{
  color: #FF8400;
}
.foot_nav .sub_nav a{
  font-size: 12px;
  color: #777;
  line-height: 24px;
  display: inline-block;
  width:130px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.foot_nav .sub_nav a:hover{
  color: #FF8400;
}
.wechat_list li{
  float: left;
  text-align: center;
  margin-left: 20px;
}
.wechat_list li .pic{
  border: 1px solid #F0F0F0;
}
.wechat_list li .text{
  width: 145px;
  height: 36px;
  line-height: 36px;
  color: #777;
}
.wechat_list li:hover .pic{
  background: #fff;
  border-color: transparent;
  -moz-box-shadow:0px 5px 20px #F7DCB4;
  -webkit-box-shadow:0px 5px 20px #F7DCB4;
  box-shadow:0px 5px 20px #F7DCB4;
}
.wechat_list li:hover .text{
  color: #fff;
  background-image: linear-gradient(to right,#FFAD01,#FF8601);
  background-image: -moz-linear-gradient(left,#FFAD01,#FF8601);
  background-image: -o-linear-gradient(left,#FFAD01,#FF8601);
}
.footer .firm_info{
  border-top: 1px solid #ddd;
  margin-top: 80px;
  height: 47px;
  line-height: 47px;
  color: #777;
  font-size: 12px;
}
.footer .firm_info a{
  color: #777;
}
.footer .firm_info a:hover{
  color: #f00;
}

/*登录、注册*/
.form_head{
  height: 120px;
  overflow: hidden;
}
.form_head .logo{
  margin-top: 18px;
}
.form_head .form_link{
  text-align: center;
  margin-top: 39px;
}
.form_head .form_link a{
  display: inline-block;
  width: 121px;
  height: 41px;
  line-height: 41px;
  border: 1px solid #ff8400;
  border-radius: 4px;
  color: #ff8400;
  font-size: 16px;
  margin-left: 17px;
}
.form_head .form_link a:hover,.form_head .form_link a.active{
  -moz-box-shadow:0px 5px 20px #F7DCB4;
  -webkit-box-shadow:0px 5px 20px #F7DCB4;
  box-shadow:0px 5px 20px #F7DCB4;
  background-image: linear-gradient(to right,#FFAD01,#FF8601);
  background-image: -moz-linear-gradient(left,#FFAD01,#FF8601);
  background-image: -o-linear-gradient(left,#FFAD01,#FF8601);
  color: #fff;
  border-color: transparent;
}
.form_body{
  width: 100%;
  height: 609px;
  background: url("../images/login_bg.jpg") no-repeat center 0;
}
.form_box{
  width: 292px;
  background: #fff;
  border-radius: 10px;
  padding: 30px;
}
.form_box.mt120{
  margin-top: 120px;
}
.form_box>h3{
  font-size: 22px;
  color: #ff8400;
  text-align: center;
}
.form_box .form_layer .border{
  border: 1px solid #E4E4E4;
  width: 248px;
  height: 40px;
  border-radius: 20px;
  line-height: 40px;
  padding: 0 20px;
  margin: 35px 0;
  position: relative;
}
.form_box .form_layer .iconfont{
  color: #FF8400;
}
.form_box .form_layer .border input{
  width: 214px;
  margin-left: 12px;
  border: none;
  outline: none;
}
.form_box .form_layer .error{
  position: absolute;
  bottom: -25px;
  left: 20px;
  font-size: 12px;
  color: #f00;
  line-height: normal;
}
.form_box .form_layer .error .iconfont{
  color: #f00;
  vertical-align: middle;
}
.form_box .form_layer .success{
  position: absolute;
  bottom: -25px;
  left: 20px;
  font-size: 12px;
  color: #58D043;
  line-height: normal;
}
.form_box .form_layer .success .iconfont{
  color: #58D043;
  vertical-align: middle;
}
.form_box .form_layer .form_btn{
  display: block;
  width: 290px;
  height: 42px;
  border: none;
  outline: none;
  border-radius: 21px;
  color: #fff;
  cursor: pointer;
}
.form_other{
  margin-top: 30px;
  padding: 0 6px;
}
.form_other .label{
  position: relative;
  color: #FF8400;
}
.form_other .label input[type='checkbox']{
  visibility: hidden;
  margin-right: 6px;
}
.form_other .label>b{
  position: absolute;
  top: 3px;
  left: 0;
  width: 15px;
  height: 15px;
  background: url("../images/iconlist.png") no-repeat -65px -123px;
}
.form_other .label>b.cur{
  background-position-x: -40px;
}
.form_other a{
  color: #FF8400;
}
.form_foot{
  text-align: center;
  margin: 50px auto;
}
.form_foot .ff_nav{
  display: inline-block;
  margin: 15px 0;
}
.form_foot .ff_nav li{
  float: left;
}
.form_foot .ff_nav li>a{
  margin: 0 25px;
  font-size: 16px;
  color: #747474;
}
.form_foot .ff_nav li>a:hover{
  color: #FF8400;
  -moz-text-shadow:5px 5px 20px #F7DCB4;
  -webkit-text-shadow:5px 5px 20px #F7DCB4;
  text-shadow:5px 5px 20px #F7DCB4;
}
.form_foot p{
  color: #afafaf;
}
.form_radio .label{
  font-size: 16px;
  color: #ff8400;
  padding: 0 20px;
  position: relative;
}
.form_radio .label input[type='radio']{
  visibility: hidden;
  margin-right: 6px;
}
.form_radio .label>b{
  position: absolute;
  top: 4px;
  left: 20px;
  width: 15px;
  height: 15px;
  background: url("../images/iconlist.png") no-repeat -65px -123px;
}
.form_radio .label>b.cur{
  background-position-x: -40px;
}
.form_layer .code{
  margin-bottom: 28px;
  position: relative;
}
.form_layer .code_input{
  border: 1px solid #E4E4E4;
  width: 130px;
  height: 40px;
  border-radius: 20px;
  line-height: 40px;
  padding: 0 20px;
}
.form_layer .code_input .iconfont{
  color: #FF8400;
}
.form_layer .code_input input{
  width: 94px;
  margin-left: 12px;
  border: none;
  outline: none;
}
.form_layer .get_code{
  width: 102px;
  height: 42px;
  border-radius: 21px;
  background: #E6E6E6;
  color: #909090;
  border: none;
  outline: none;
}
.form_body .form_box.mt100{
  margin-top: 100px;
}
.form_box.mt100 .form_layer .border{
  margin: 28px 0;
}
.form_box.mt100 .form_layer .form_other{
  font-size: 12px;
  color: #b3b3b3;
}
.form_box.mt100 .form_layer .form_other .fn-left a{
  color: #b3b3b3;
}
.form_body .form_box.mt140{
  margin-top: 140px;
  padding: 40px 30px;
}
/*专家智库*/
.container_box{
  background: #F7F6F4;
  padding: 35px 0;
}
.left_aside{
  width: 314px;
  padding: 23px;
  background: #fff;
  border-radius: 7px;
  -moz-box-shadow:0px 5px 20px #F7ECDD;
  -webkit-box-shadow:0px 5px 20px #F7ECDD;
  box-shadow:0px 5px 20px #F7ECDD;
  position: relative;
}
.left_aside .part1{
  border-bottom: 1px solid #F7F3EC;
  padding-bottom: 20px;
}
.left_aside .part1 .avater{
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
}
.left_aside .part1 .intr{
  margin: 10px 0 0 16px;
}
.left_aside .part1 .intr .name span{
  font-size: 20px;
  font-weight: bold;
  color: #404040;
  margin-right: 5px;
}
.left_aside .part1 .intr .name .iconfont{
  color: #FF8400;
  font-size: 16px;
  vertical-align: text-top;
}
.left_aside .part1 .intr .honor{
  color: #686868;
  line-height: 28px;
  margin: 5px 0;
  overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
  width:196px;
}
.left_aside .part1 .intr .dizhi{
  color: #686868;
}
.left_aside .part1 .intr .dizhi .iconfont{
  vertical-align: text-bottom;
  margin-left: 5px;
}
.left_aside .part2{
  margin: 30px 0 0 0;
  border-bottom: 1px solid #F7F3EC;
}
.left_aside .part2 .icon_group li{
  float: left;
  width: 104px;
  height: 50px;
  color: #686868;
}
.left_aside .part2 .icon_group .iconfont{
  padding: 6px;
  border: 1px solid #C1C1C1;
  border-radius: 50%;
  background: #C1C1C1;
  color: #fff;
  margin-right: 6px;
}
.left_aside .part2 .icon_group .iconfont.light{
  border-color: #FF8400;
  background: transparent;
  color: #FF8400;
}
.left_aside .part3{
  border-bottom: 1px solid #F7F3EC;
  padding: 10px 0;
}
.left_aside .part3 p{
  line-height: 40px;
  color: #363636;
}
.left_aside .part3 .rank b{
  font-size: 20px;
  color: #ff8400;
  font-weight: normal;
}
.left_aside .part3 .index{
  font-size: 20px;
  color: #ff8400;
}
.left_aside .part4{
  border-bottom: 1px solid #F7F3EC;
  padding: 20px 0;
}
.left_aside .part4>p{
  color: #363636;
}
.left_aside .part4 .zili{
  margin-left: 56px;
}
.left_aside .part4 .zili li{
  font-size: 12px;
  color: #868686;
  line-height: 24px;
}
.left_aside .part4 .zili li>b{
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #FF8400;
  border-radius: 50%;
  vertical-align: top;
  margin:11px 8px 0 0;
}
.left_aside .part5{
  text-align: center;
}
.left_aside .part5 .pic{
  width: 84px;
  height: 84px;
  background: url("../images/jswd_bg3.png") no-repeat;
  padding: 8px;
  margin: 20px auto 10px;
}
.left_aside .part5 .text{
  font-size: 12px;
  color: #363636;
}
.left_aside .hire{
  position: absolute;
  top: 165px;
  left: -30px;
  width: 16px;
  height: 75px;
  padding:5px 7px;
  text-align: center;
  background-image: linear-gradient(to bottom,#FFAD01,#FF8601);
  background-image: -moz-linear-gradient(top,#FFAD01,#FF8601);
  background-image: -o-linear-gradient(top,#FFAD01,#FF8601);
  color: #fff;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.right_aside{
  width: 820px;
  background: #fff;
  border-radius: 7px;
  -moz-box-shadow:0px 5px 20px #F7ECDD;
  -webkit-box-shadow:0px 5px 20px #F7ECDD;
  box-shadow:0px 5px 20px #F7ECDD;
}
.lecturer_nav{
  border-bottom: 1px solid #F7F6F4;
  padding: 20px 30px;
}
.lecturer_nav li{
  float: left;
  margin: 0 30px;
}
.lecturer_nav li>a{
  color: #5C5C5C;
  font-size: 16px;
  position: relative;
}
.lecturer_nav li>a:hover,.lecturer_nav li>a.cur{
  color: #FF8400;
}
.lecturer_nav li>a:hover b,.lecturer_nav li>a.cur b{
  position: absolute;
  bottom: -23px;
  left: 0;
  width: 66px;
  height: 5px;
  background-image: linear-gradient(to right,#FFAD01,#FF8601);
  background-image: -moz-linear-gradient(left,#FFAD01,#FF8601);
  background-image: -o-linear-gradient(left,#FFAD01,#FF8601);
}
.ms_course_list{
  padding: 35px;
}
.ms_course_list li{
  float: left;
  width: 220px;
  margin: 22px 15px;
}
.ms_course_list li>a{
  display: block;
}
.ms_course_list li>a .pic{
  width: 220px;
  height: 160px;
  overflow: hidden;
  position: relative;
}
.ms_course_list li>a .text{
  border: 1px solid #E7E7E7;
  border-top: none;
  padding: 15px 10px;
}
.ms_course_list li>a .text-1{
  color: #444;
  width: 135px;
}
.ms_course_list li>a .collect{
  display: inline-block;
  width: 16px;
  height: 14px;
  background: url("../images/iconlist.png") no-repeat -112px -122px;
  vertical-align: top;
  margin: 3px 5px 0 0;
}
.ms_course_list li>a:hover{
  -moz-box-shadow:0px 5px 20px #F7DCB4;
  -webkit-box-shadow:0px 5px 20px #F7DCB4;
  box-shadow:0px 5px 20px #F7DCB4;
}
.ms_course_list li>a img{
  transition: all .3s linear;
}
.ms_course_list li>a:hover img,.ms_course_list li>a:hover .mask{
  transform: translateY(-5px);
  transition: all .3s linear;
}
.ms_course_list li>a:hover .text{
  border-color: transparent;
}
/*名师视频*/
.ms_course_list .pic .layer{
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 160px;
}
.ms_course_list .pic .mask{
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 160px;
  background: #000;
  opacity: .5;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  z-index: 66;
  transition: all .3s linear;
}
.ms_course_list .pic .content{
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 160px;
  z-index: 88;
}
/*文章观点*/
.ms_news_list{
  padding:30px 35px 33px 35px;
}
.ms_news_list li>a{
  display: block;
  padding: 19px 15px;
  border-bottom: 1px dotted #EFEFEF;
  transition: all .3s linear;
}
.ms_news_list li>a b{
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #FF8400;
  vertical-align: top;
  margin:7px 10px 0 0;
}
.ms_news_list li>a .text-1{
  display: inline-block;
  color: #696969;
  width: 520px;
}
.ms_news_list li>a .fn-right{
  color: #ACACAC;
}
.ms_news_list li>a:hover .text-1{
  color: #FF8400;
}
.ms_news_list li>a:hover{
  color: #FF8400;
  -moz-box-shadow:0px 5px 20px #F7DDB7;
  -webkit-box-shadow:0px 5px 20px #F7DDB7;
  box-shadow:0px 5px 20px #F7DDB7;
  transition: all .3s linear;
}
/*分页*/
.pager{
  text-align: right;
  padding: 0 50px 35px 0;
}
.page_bar{
  display: inline-block;
}
.page_bar a{
  display: inline-block;
  width: 26px;
  height: 26px;
  border: 1px solid #c3c3c3;
  font-size: 18px;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  color: #c3c3c3;
  margin: 0 6px;
}
.page_bar a.cur{
  background: #FF8400;
  border-color: #FF8400;
  color: #fff;
}
.page_bar .current{
  display: inline-block;
  width: 26px;
  height: 26px;
  border: 1px solid #c3c3c3;
  font-size: 18px;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  color: #c3c3c3;
  margin: 0 6px;
  background: #FF8400;
  border-color: #FF8400;
  color: #fff;
}

.page_bar a:hover {
  box-shadow:2px 2px 2px 0 #ccc;
}

/*专家智库*/
.condition{
  background: #fff;
  border: 1px solid #F2F1EF;
  padding: 15px 24px;
  position: relative;
}
.condition .type{
  display: inline-block;
  width: 80px;
  color: #3e3d3d;
  line-height: 27px;
  vertical-align: top;
}
.condition .been_select{
  padding-bottom: 15px;
  border-bottom: 1px solid #F7F6F4;
}
.condition .been_select span{
  display: inline-block;
  padding: 4px 15px;
  background-image: linear-gradient(to right,#FFAD01,#FF8601);
  background-image: -moz-linear-gradient(left,#FFAD01,#FF8601);
  background-image: -o-linear-gradient(left,#FFAD01,#FF8601);
  border-radius: 2px;
  position: relative;
  color: #fff;
  margin-right: 30px;
}
.condition .been_select .iconfont{
  position: absolute;
  top: 6px;
  right: 4px;
  cursor: pointer;
}
.condition .been_select .cond_4{
  display: none;
}
.condition .expert_classify{
  padding: 15px 0;
  border-bottom: 1px solid #F7F6F4;
}
.condition .all{
  display: inline-block;
  width: 66px;
  line-height: 27px;
  color: #3e3d3d;
  text-align: center;
  cursor: pointer;
  vertical-align: top;
}
.condition .all.active{
  background-image: linear-gradient(to right,#FFAD01,#FF8601);
  background-image: -moz-linear-gradient(left,#FFAD01,#FF8601);
  background-image: -o-linear-gradient(left,#FFAD01,#FF8601);
  color: #fff;
  border-radius: 2px;
}
.condition .list{
  width: 990px;
  display: inline-block;
  vertical-align: bottom;
  margin-left: 4px;
}
.condition .list li{
  float: left;
  margin: 0 7px;
  cursor: pointer;
}
.condition .expert_classify .list li{
  height: 27px;
  line-height: 27px;
}

.condition .speciality .list li{
  height: 27px;
  line-height: 27px;
  margin-bottom: 10px;
}
.condition .resident .list{
  width: 910px;
  height: 27px;
  overflow: hidden;
}
.condition .resident .list li{
  height: 27px;
  line-height: 27px;
  margin-bottom: 10px;
}
.condition .list li.active span{
  border-radius: 2px;
  background-image: linear-gradient(to right,#FFAD01,#FF8601);
  background-image: -moz-linear-gradient(left,#FFAD01,#FF8601);
  background-image: -o-linear-gradient(left,#FFAD01,#FF8601);
  color: #fff;
}
.condition .speciality{
  padding: 15px 0;
  border-bottom: 1px solid #F7F6F4;
}
.condition .resident{
  padding: 15px 0;
}
.condition .resident .more_city{
  display: inline-block;
  vertical-align: top;
  height: 27px;
  line-height: 27px;
  width: 76px;
  border-radius: 2px;
  text-align: center;
  color: #fff;
  cursor: pointer;
}
.condition .under_area{
  width: 988px;
  padding: 10px 0 0 10px;
  background: #F4F3F0;
  margin-left: 150px;
  display: none;
}
.condition .under_area .list{
  width: 896px;
}
.condition .under_area .list li{
  height: 27px;
  line-height: 27px;
  margin-bottom: 10px;
}
.condition .list li span{
  padding: 4px 8px;
}
.condition .con_filter{
  position: absolute;
  top: 15px;
  right: 30px;
  padding: 4px 16px;
  border: none;
  border-radius: 3px;
  color: #fff;
  font-size: 14px;
  cursor:pointer;
  outline: none;
}




.think_tank .lecturer_list.mt0{
  margin-top: 0;
}
.pager2{
  text-align: center;
  margin: 30px 0;
}
.pager2 .page_bar a{
  background: #fff;
  color: #FF8400;
  border: none;
}
.pager2 .page_bar a.cur{
  background: #FF8400;
  color: #fff;
}

/*商业资讯*/
.bizboom{
  background: #F7F6F4;
  padding: 50px 0;
}
.sub_navbar{
  text-align: center;
  margin: 20px 0;
}
.sub_navbar a{
  display: inline-block;
  width: 131px;
  height: 43px;
  line-height: 43px;
  text-align: center;
  border: 1px solid #FF8400;
  font-size: 18px;
  color: #ff8400;
  border-radius: 22px;
  margin: 0 22px;
}
.sub_navbar a.active{
  -moz-box-shadow:0px 5px 20px #F7DDB7;
  -webkit-box-shadow:0px 5px 20px #F7DDB7;
  box-shadow:0px 5px 20px #F7DDB7;
  background-image: linear-gradient(to right,#FFAD01,#FF8601);
  background-image: -moz-linear-gradient(left,#FFAD01,#FF8601);
  background-image: -o-linear-gradient(left,#FFAD01,#FF8601);
  color: #fff;
  border-color: transparent;
}

/*关于我们*/
.about_us{
  padding: 50px 0;
}
.about_us p{
  color: #323232;
  line-height: 28px;
  margin: 20px 0 0 0;
}
/*联系我们*/
#mymap{
  width: 1198px;
  height: 248px;
  margin: 50px 0;
  border: 1px solid #fff;
}
.contact{
  padding-bottom: 60px;
  border-bottom: 1px solid #E0E0E0;
}
.contact .pic{
  width: 154px;
  height: 154px;
  border: 1px solid #E7E7E7;
}
.contact .text{
  margin-left: 40px;
}
.contact .text h3{
  font-size: 26px;
  color: #2e2e2e;
}
.contact_info{
  margin-top: 15px;
}
.contact_info .fn-left{
  margin-right: 90px;
}
.contact_info p{
  color: #4c4c4c;
  margin-top: 30px;
}
.contact_info p .iconfont{
  color: #FFA501;
  margin-right: 8px;
}
.online{
  padding: 60px 0;
  text-align: center;
}
.online .title{
  margin: 20px 0;
}
.online input{
  width: 740px;
  height: 64px;
  background: #fff;
  border: none;
  outline: none;
  text-align: center;
  margin-top: 44px;
  border-radius: 6px;
}
.online textarea{
  width: 700px;
  height: 134px;
  padding: 20px;
  border: none;
  outline: none;
  background: #fff;
  text-align: center;
  border-radius: 6px;
  margin: 44px 0;
  resize: none;
}
.online_submit{
  display: inline-block;
  width: 740px;
  height: 64px;
  border: none;
  outline: none;
  border-radius: 6px;
  color: #fff;
  font-size: 18px;
}

/*弹窗*/
.dialog{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.dialog .mask{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .5;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  z-index: 100;
}
.dialog .layer{
  position: fixed;
  top: 50%;
  left: 50%;
  width: 480px;
  height: 310px;
  margin: -155px 0 0 -240px;
  background: #fff;
  border-radius: 8px;
  z-index: 200;
  overflow: hidden;
}
.dialog_head{
  height: 54px;
  line-height: 54px;
  text-align: center;
  position: relative;
}
.dialog_head h3{
  font-size: 24px;
  color: #fff;
}
.dialog_head .iconfont{
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  line-height: normal;
}
.dialog_body{
  padding: 30px;
  text-align: center;
}
.dialog_body .content{
  font-size: 18px;
  margin: 30px 0 20px 0;
}
.dialog_body .tip{
  font-size: 16px;
  color: #8C8C8C;
  line-height: 30px;
}
.dialog_body .tip span{
  color: #f00;
  font-size: 20px;
}
.dialog_body .link{
  display: inline-block;
  padding: 10px 15px;
  border: 1px solid #FF8400;
  border-radius: 6px;
  color: #FF8400;
  font-size: 16px;
  margin-top: 30px;
}
.dialog_body .content.light{
  font-size: 24px;
  font-weight: bold;
  color: #FF8400;
  margin: 10px 0 20px 0;
}
/*平台模式*/
.pattern{
  padding: 50px 0;
}
.pattern li{
  margin-bottom: 20px;
}
.pattern .pic{
  width: 106px;
  height: 106px;
  border-radius: 50%;
  overflow: hidden;
}
.pattern .text{
  padding: 15px 25px;
  max-width: 530px;
  border-radius: 5px;
  margin:22px 30px 0 30px;
  position: relative;
}
.pattern .question .text b{
  position: absolute;
  top: 20px;
  left: -20px;
  border: 10px solid transparent;
  border-right-color: #fff;
}
.pattern .answer .text b{
  position: absolute;
  top: 20px;
  right: -20px;
  border: 10px solid transparent;
  border-left-color: #FF8400;
}
.pattern .text p{
  font-size: 18px;
  color: #3c3c3c;
  line-height: 30px;
}
.pattern .question .text{
  background: #fff;
  border: 1px solid #EAEAEA;
}
.pattern .answer .text p{
  color: #fff;
}
.pattern_train{
  padding: 20px 0;
}
.pattern_train li{
  float: left;
  margin: 20px 14px 0;
}
.pattern_train li>a{
  display: inline-block;
  width: 372px;
}
.pattern_train li>a img{
  height: 258px;
  overflow: hidden;
  transition: all .3s linear;
}
.pattern_train li>a p{
  text-align: center;
  margin: 20px 0;
}
.pattern_train li>a:hover{
  color: #FF8400;
}
.pattern_train li>a:hover img{
  transform: scale(1.02);
  transition: all .3s linear;
}
/*需求大厅*/
.demand{
  padding: 10px 0 30px 0;
  background: #F7F6F4;
}
.demand_list{
  padding-bottom: 1px;
}
.demand_list li{
  padding: 30px 50px;
  background: #fff;
  border-radius: 4px;
  margin: 40px 0 30px 0;
}
.demand_list li h3{
  font-size: 20px;
}
.demand_list li .detail{
  margin-top: 20px;
  font-size: 16px;
  color: #8a8a8a;
}
.demand_list li .detail .iconfont{
  font-size: 18px;
  color: #FF9000;
  margin-right: 10px;
}
.demand_list li .detail span{
  margin-right: 25px;
}
.demand_list li .bid{
  display: inline-block;
  width: 74px;
  height: 74px;
  line-height: 74px;
  border: 1px solid #FF8400;
  border-radius: 50%;
  font-size: 22px;
  color: #FF8400;
  text-align: center;
}
.demand_list li:hover{
  -moz-box-shadow:0px 5px 20px #F7ECDD;
  -webkit-box-shadow:0px 5px 20px #F7ECDD;
  box-shadow:0px 5px 20px #F7ECDD;
}
.demand_list li .bid:hover{
  background-image: linear-gradient(to right,#FFAD01,#FF8601);
  background-image: -moz-linear-gradient(left,#FFAD01,#FF8601);
  background-image: -o-linear-gradient(left,#FFAD01,#FF8601);
  color: #fff;
  border-color: transparent;
}
.demand_list li .fn-right span{
  display: inline-block;
  width: 76px;
  height: 76px;
  line-height: 76px;
  border-radius: 50%;
  font-size: 22px;
  text-align: center;
  color: #fff;
  cursor: not-allowed;
}
.demand_list li .been_bid{
  background-image: linear-gradient(to right,#FFAD01,#FF8601);
  background-image: -moz-linear-gradient(left,#FFAD01,#FF8601);
  background-image: -o-linear-gradient(left,#FFAD01,#FF8601);
}
.demand_list li .over_bid{
  background: #BEBEBE;
}

/*鉴证系统*/
.attestation{
  padding: 10px 0 30px;
  width: 1310px;
  margin-left: -55px;
}
.attestation li{
  float: left;
  margin: 30px 55px 20px;
}
.attestation li>a{
  display: block;
  padding: 45px;
  width: 455px;
  background: #fff;
  border-radius: 5px;
}
.attestation li>a>span{
  display: inline-block;
}
.attestation li>a .icon .iconfont{
  font-size: 36px;
  color: #FF8400;
  line-height: 60px;
  margin-right: 35px;
}
.attestation li>a .icon .iconfont.fs30{
  font-size: 30px;
}
.attestation li>a .arrow .iconfont{
  font-size: 18px;
  color: #FF8400;
  line-height: 60px;
  font-weight: bold;
}
.attestation li>a h3{
  font-size: 24px;
  color: #313131;
}
.attestation li>a p{
  color: #727272;
  margin-top: 10px;
}
.attestation li>a:hover{
  background-image: linear-gradient(to right,#FFAD01,#FF8601);
  background-image: -moz-linear-gradient(left,#FFAD01,#FF8601);
  background-image: -o-linear-gradient(left,#FFAD01,#FF8601);
  -moz-box-shadow:0px 5px 20px #F7D9AD;
  -webkit-box-shadow:0px 5px 20px #F7D9AD;
  box-shadow:0px 5px 20px #F7D9AD;
}
.attestation li>a:hover .iconfont{
  color: #fff;
}
.attestation li>a:hover h3{
  color: #fff;
}
.attestation li>a:hover p{
  color: #fff;
}
/*鉴证流程*/
.attestation_flow{
  margin: 120px 0;
}
/*鉴证查询*/
.attestation_query{
  min-height: 360px;
}
.attestation_query .query_layer{
  display: block;
  width: 685px;
  padding: 15px 60px;
  margin: 200px auto 50px;
  border: 2px solid #FF8400;
  font-size: 20px;
  outline: none;
  border-radius: 28px;
  background: transparent;
}
.attestation_query .query_btn{
  display: block;
  margin: 0 auto;
  width: 200px;
  height: 56px;
  border-radius: 28px;
  border: none;
  outline: none;
  color: #fff;
  font-size: 22px;
}

/*风云榜*/
.billboard{
  width: 100%;
  height: 3129px;
  background: url("../images/fyb.jpg") no-repeat center 0;
  position: relative;
}
.billboard_list{
  position: absolute;
  top: 24%;
  left: 50%;
  width: 1200px;
  margin-left: -600px;
}
.billboard_list li{
  float: left;
}
.billboard_list li>a{
  display: block;
  width: 230px;
  margin: 20px 35px;
  transition: all .3s ease-in-out;
  position:relative;
}
.billboard_list li .pic_img{
  height: 230px;
  overflow: hidden;
}
.billboard_list li .text{
  text-align: center;
  font-size: 16px;
  color: #fff;
  padding: 15px 0;
}
.billboard_list li>a:hover .text{
  color: #FF8400;
}
.billboard_list li>a:hover{
  transform: scale(1.04);
  -moz-box-shadow:0px 5px 20px #F7D9AD;
  -webkit-box-shadow:0px 5px 20px #F7D9AD;
  box-shadow:0px 5px 20px #F7D9AD;
  transition: all .3s ease-in-out;
}
.billboard_list .ranking{
  position: absolute;
  top:10px;
  left:10px;
  width: 45px;
  height: 45px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.billboard_list .rank-gold{
  background-image: url("../images/j1.png");
}
.billboard_list .rank-silver{
  background-image: url("../images/j2.png");
}
.billboard_list .rank-bronze{
  background-image: url("../images/j3.png");
}
.pager3{
  text-align: center;
  margin: 50px 0;
}
.pager3 .page_bar a{
  background: #3C3626;
  color: #fff;
  border: none;
}
.pager3 .page_bar a.cur{
  background: #FF8400;
  color: #fff;
}

.demand_detail{
  background: #F7F6F4;
  padding: 50px 0;
}
.detail_box{
  background: #fff;
  padding: 30px 100px;
}
.detail_box .title{
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.detail_box .intr{
  margin: 50px 0;
}
.detail_box .intr p{
  margin-bottom: 20px;
}
.detail_box .intr .iconfont{
  display: inline-block;
  color: #FF8400;
  width: 30px;
  font-size: 18px;
}
.detail_box .content{
  min-height: 500px;
}
.detail_box .content p{
  line-height: 28px;
  margin-bottom: 16px;

}
.detail_box .bid{
  display: block;
  width: 74px;
  height: 74px;
  line-height: 74px;
  border-radius: 50%;
  font-size: 22px;
  color: #fff;
  text-align: center;
  margin: 0 auto 50px;
}

.detail_box .top{
  text-align: center;
  border-bottom: 1px dashed #d3d3d3;
}
.detail_box .top p{
  margin: 16px 0;
  color: #727272;
  font-size: 16px;
}
.detail_box .top span{
  margin: 0 8px;
}
.detail_box .brief{
  background: #f2f2f2;
  padding: 15px;
  margin: 15px 0 30px 0;
}
.detail_box .brief p{
  text-indent: 28px;
  line-height: 24px;
  color: #999;
}
.detail_box .like{
  display: block;
  width: 74px;
  height: 74px;
  line-height: 74px;
  border-radius: 50%;
  font-size: 22px;
  color: #fff;
  text-align: center;
  margin: 0 auto 50px;
  cursor: pointer;
}
.detail_box .like .iconfont{
  font-size: 36px;
}
.detail_box .like.not{
  background: #dedede;
}
.detail_box .reprint{
  color: #666;
}
.detail_box .reprint a{
  color: #666;
}
.detail_box .bottom{
  color: #666;
}
.detail_box .bottom a{
  color: #666;
}
.detail_box .bottom a:hover{
  color: #FF7200;
}


/*置顶缓冲遮罩*/
.loading {display:none;width:100%;height:100%;position:fixed;top:0;left:0;z-index:1000;background:rgba(0,0,0,0.5);}
.loading .msg {width:100%;height:40px;line-height:40px;color:#fff;text-align: center;position:absolute;top:50%;left:0;margin-top:-40px;font-size:15px;}
.loading .msg i {font-size:50px;}

.back_top{
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	background: url(../images/top.png) no-repeat;
	background-size: 100% 100%;
	display: none;
	z-index: 10000;
}
.back_top:hover{
	background: url(../images/back_top.png) no-repeat;
	background-size: 100% 100%;
}

.condition .industry_classify{
  padding: 15px 0;
  border-bottom: 1px solid #F7F6F4;
}
.condition .industry_classify .list li{
  height: 27px;
  line-height: 27px;
}

.total {width:1200px;margin:0 auto 40px;}
.total img {vertical-align:baseline;margin-left:7px;}


.explain_box{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	background: rgba(0,0,0,0.5);
}
.explain{
	width: 1200px;
	margin: 0 auto;
	padding: 30px 0;
}
.explain .h3{
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	line-height: 2;
}
.explain p{
	font-size: 16px;
	color: #fff;
	line-height: 2;
}
.proj_list p{
	float: left;
	padding: 5px 20px;
	margin: 10px 20px;
	background: rgba(0,0,0,0.5);
}

