/***********************通用基础样式************************/
/*目前要兼容的浏览器的hack方法*/
/*background:#1C83C7;*/
/* background:red\0;ie8的hack方法*/
/* _background:red;ie6的hack方法*/
/*火狐的私有属性，用来处理兼容性*/
/*    @-moz-document url-prefix() {
        element{
            margin:0 5px 4px 5px;
        }
        element{
            padding-left:14px;
        }
    }*/
* {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
         -o-box-sizing: border-box;
            box-sizing: border-box;
}
/*通用*/
body {
    margin:0;
    padding:0;
    font-size:15px;
    color: #444;
}
select,input,ul,li,p,h1,h2,h3,h4,h5,h6,dl,dt,dd {
    margin:0;
    padding:0;
    border:none;
    list-style:none;
}
a  {
    text-decoration:none;
    /*color:#fff;*/
}
input {border:none;}
.lf   {float:left;}
.rt  {float:right;}
.clear  {clear:both;}

/************容器宽度的设置*************/
.container {
    width:1000px;
    margin-right: auto;
    margin-left: auto;
}
/*****************整体布局*************/

.main_color{
    background-color:#1c83c7;
}
.font_blue{
    color:#1c83c7;
}
.font_white{
    color:#fff;
}
.bg-gray{
    background-color:#F2F2F2;
}
img{
    border-style:none;
    vertical-align: middle;
}
/*半边蓝的颜色主题样式*/
.half_blue{
    width:100%;
    position:relative;
    height:29px;
    padding-bottom:7px;
    border-bottom:1px solid #ccc;
}
.half_blue:after{
    content:"";
    display: block;
    height:0;
    clear: both;
}
.half_blue h2{
    position:absolute;
    height:30px;
    font-size:18px;
    padding-bottom:5px;
    border-bottom:3px solid #1c83c7;
}
.half_blue a{
    font-size:18px;
    padding-top:4px;
    float:right;
}
/*这个是友情连接那边大洲被激活时的状态*/
.active{
    color:#1c83c7;
}
.abso{
    position: absolute;
}
.active_style{
    position: absolute;
    z-index: 1;
    width:70px;
    height:56px;
    background:#1C83C7;
}
/*百度分享按钮的样式重写*/
#bdshare{
         display: inline-block;
    width: 15px;
    height: 15px;  
    float: right!important;
    z-index:1!important;
    }
#bdshare:after{
    display: block;
}
#bdshare>span{
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url(../images/index_icon.png) no-repeat -132px 0!important;
    float: right;
}
/*新闻列表的百度分享*/
#new_details_share{
    float:right;
}
#new_details_share>a{
    width:34px;
    height:28px;
    margin-left:7px;
    margin-top: 0!important;
}
.hide{
    visibility: hidden;
}
.moveDiv {
    width: 86px;
    height: 36px;
    overflow: hidden;
    cursor: move;
    text-align: center;
    margin: 10px 13px;
    position: relative;
    line-height: 36px;
    background: url(/static/web_css/web/images/btn_bg.png) no-repeat -208px 0;
    display: none;
}







