@charset "utf-8";
/*内容部分*/
*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html,body{
    width: 100%;
    height: 100%;
}
.sy{
    position: relative;
    min-height: 100%;
    padding-bottom: 151px;
}
.common-bottom{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.jf-content{
    margin-bottom: 25px;
    padding: 15px 0;
}
/*tab标签*/
.tab-header{
    position: relative;
    border-bottom: 1px solid #bc1a2c;
}
.current-date{
    position: absolute;
    top: 10px;
    right: 25px;
}
.tab-list>li{
    float: left;
    height: 40px;
    line-height: 40px;
    padding: 0 25px;
    font-size: 16px;
    cursor: pointer;
}
.tab-list>li.active{
    background-color: #bc1a2c;
    color: #fff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.tab-content{
    display: none;
}
.tab-content.active{
    display: block;
}
/*表格*/
.table-box{
    padding: 10px 15px;
}
.border-table{
    width: 100%;
    table-layout: fixed;
    margin-bottom: 15px;
}
.border-table tr{
    border-bottom: 1px dashed #bc1a2c;
}
.border-table th{
    font-weight: bold;
    line-height:1em;
    height:40px;
}
.table-unit{
    font-size: 12px;
}
.border-table th,
.border-table td{
    padding: 6px 8px;
    text-align: center;
}
.border-table .even{
    background-color: #fff1f3;
    color: #555555;
}
.border-table a{
    color: #1479c9;
}