/*清除元素默认的内外边距  */
* {
    margin: 0;
    padding: 0
}
/*让所有斜体 不倾斜*/
em,
i {
    font-style: normal;
}
/*去掉列表前面的小点*/
li {
    list-style: none;
}
/*图片没有边框   去掉图片底侧的空白缝隙*/
img {
    border: 0;  /*ie6*/
    vertical-align: middle;
}
/*让button 按钮 变成小手*/
button {
    cursor: pointer;
}
/*取消链接的下划线*/
a {
    color: #666;
    text-decoration: none !important;
}
a:hover {
    color: #BF320C;
    text-decoration: none;
}

button,
input {
    font-family: 'Microsoft YaHei', 'Heiti SC', tahoma, arial, 'Hiragino Sans GB', \\5B8B\4F53, sans-serif;
    /*取消轮廓线 蓝色的*/
    outline: none;
}

body {
    background-color: #ffffff;
    font: 14px 'Microsoft YaHei', 'Heiti SC', tahoma, arial, 'Hiragino Sans GB', \\5B8B\4F53, sans-serif;
    color: #656565;
}

.hide,
.none {
    display: none;
}
/*清除浮动*/
.clearfix:after {
    visibility: hidden;
    clear: both;
    display: block;
    content: ".";
    height: 0
}

.clearfix {
    *zoom: 1
}
/* 共用样式 */
/* 头部 */
.header-box {
    background: url(../images/scjdgl_Icon-1.png) no-repeat;
}
.header-top {
    height: 50px;
    line-height: 50px;
}
.date ul li {
   float: left;
}
.collection ul li {
  float: left;
}
.collection ul li .active {
    color: #BF320C;
}
/* logo-search*/
.logo-search {
    height: 170px;
    line-height: 170px;
}
.search {
    height: 38px;
}
.logo-search .search input {
    width: 190px;
    height: 38px;
    line-height: 38px;
    /* padding: 5px 10px; */
    background-color: #f6f6f6;
    box-sizing: border-box;
    border: 0;
}
.logo-search .search button {
    width: 40px;
    height: 38px;
    line-height: 38px;
    border:0;
    border-top-right-radius:10px;
    border-bottom-right-radius: 10px; 
    background-color: #CC3333;
    margin-left: -10px;
    box-sizing: border-box;
}
.tab {
    height: 50px;
    line-height: 50px;
    background-color: #CC3333;
}
/* .tab ul {
    display: flex;
    justify-content: space-between;
} */
.tab ul li {
    float: left;
    width:25% ;
    box-sizing: border-box;
}
.tab ul .tab2 {
    padding-left: 50px;
}
.tab ul .tab3 {
    padding-left: 100px;
}
.tab ul .tab4 {
   text-align: right;
}
.tab ul li a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}
.tab ul  .active a {
    position: relative;
}
 
.tab ul .active a::before {
    position: absolute;
    bottom: -8px;
    content: "";
    width: 100%;
    height: 3px;
    background-color: #ffffff;
}
/* 尾部 */
.footer-box {
    background-color: #9B0305;
}
.footer {
    height: 176px;
    text-align: center;
    padding: 34px 0;
    box-sizing: border-box;
}
.footer p {
    color: #ffffff;
   margin-bottom: 10px;
}
.footer p span a{
    display: block;
    text-align: center;
    color: #fff;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 2px;
}
/* 新闻头部 */

/* 版心 */
.w {
    width: 1080px;
    margin:  0 auto;
}
/* 浮动 */
.fl {
    float: left;
}
.fr {
    float: right;
}
/* 竖线 */
.line {
    width: 1px;
    height: 14px;
    background-color: #656565;
    margin: 17px 10px;
    vertical-align: middle;
}
.mb {
    margin-bottom: 10px;
}
.text-red {
    color: #BF320C;
}
/* 卡片阴影 */
.card {
    box-shadow: 1px 2px 4px #F3F3F3;
}