/*公共自定义样式*/
body {
    background: #e4f1f4;
}

/*通用标题样式一*/
div.title{
    border-bottom: solid 1px #1c80d5;
    color: #444;
    display: block;
    padding: 1px;
    position: relative;
}
div.title>h4:before {
    content: '';
    display: block;position: absolute;width: 4px;height: 14px;top: 10px;left: 1px;  background-color: #1c80d5;
}

div.title>h4{
    color: #1c80d5;
    font-size: 16px;
    font-weight: bold;
    padding-left: 10px;
}

/*通用标题样式二*/
.box-header {
    border-bottom: solid 1px #1c80d5;
}
.box-header .box-title {
    color: #1c80d5;
    font-size: 14px;
    padding-left: 10px;
}
.box-header .box-title:before {
    content: '';
    position: absolute;
    width: 4px;
    height: 14px;
    background-color: #1c80d5;
    top: 11px;
    left: 10px;
}

.baseinfo th{max-width:100px;text-align: right;}



/*专家打分*/
.box-score{
    margin-top: 10px;
}
.box-score .btn-score{
    margin-bottom: 10px;
    margin-right: 10px;
}

/*自定义默认表格样式*/
.table_default{

}
.table_default > thead > tr > th, .table_default > tbody > tr > th, .table_default > tfoot > tr > th, .table_default > thead > tr > td, .table_default > tbody > tr > td, .table_default > tfoot > tr > td {
    border: 1px solid #999;
}

.red{
    color: #FF0000;
    font-weight: bold;
}

/*模拟对角线*/
.out {
    border-top: 5em #199fff solid; /*上边框宽度等于表格第一行行高*/
    border-left: 200px #ff8838 solid; /*左边框宽度等于表格第一行第一格宽度*/
    position: relative; /*让里面的两个子容器绝对定位*/
    color:white;
}
.out b {
    font-style: normal;
    display: block;
    position: absolute;
    top: -5.3em;
    left: -160px;
    width: 200px;
}
.out em {
    font-style: normal;
    display: block;
    position: absolute;
    top: -78px;
    left: -230px;
    width: 200px;
}

