/*公共样式*/
ul, li { list-style-type:none;}

/*table {min-height: 25px; line-height: 25px; text-align: center; border-collapse: collapse;}
.table table,table tr th, table tr td {width: 33%}*/

.point{ cursor:pointer; text-decoration:underline ;color: cornflowerblue}

/*内容页布局 begin*/
header{
    text-align: center;
}
main{ /* main的padding-bottom值要等于或大于footer的height值 */
    padding-bottom:100px;
    background:#ccc;
}
footer{
    position:absolute;
    color:#fff;
    bottom:0;
    width:100%;
    text-align:center;
    background-color: #000;
}

/*内容页布局 end*/
.ifr_div{
    padding: 20px;
    border: 1px solid #eee;
}

.site-title fieldset {
    border: none;
    padding: 0;
    border-top: 1px solid #eee;
}

.site-title fieldset legend {
    margin-left: 20px;
    padding: 0 10px;
    font-weight: 300;
}

a {
    color: #0066cc;
}

.scroll-box {
    /* 设置最大高度，超过就滚动 */
    max-height: 600px;
    /* 垂直超出显示滚动条，水平不会 */
    overflow-y: auto;
    /* 隐藏水平滚动条（可选） */
    overflow-x: hidden;
    border: 1px solid #ccc;
    padding: 10px;
}

.text-ellipsis {
    /* 关键三行单行省略 */
    display: inline-block;
    max-width: 200px; /* 限制最大宽度，控制显示长度 */
    white-space: nowrap; /* 禁止换行 */
    overflow: hidden;    /* 隐藏溢出内容 */
    text-overflow: ellipsis; /* 超出显示... */
    vertical-align: middle;
}