/* 详情页通用css */
.articleShell {
    padding: 30px 40px;
    background: white;
}

.articleShell .articleHeader {
    border-bottom: 1px solid #c5c5c5;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.articleShell .articleHeader .title {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    word-wrap: break-word;
}

.articleShell .articleHeader table {
    margin: 10px auto;
}

.articleShell .articleContent {
    margin: 0 auto 20px;
    min-height: 600px;
    padding: 0 10% 10px;
}

.dataDiv > span{
    font-size: 1.2em;
    font-weight:bold;
    padding-left:5px;
}
.dataDiv{
    min-height:inherit;
}


#goto:hover{
    cursor: pointer;
    color: blue;
}

.dataDiv{
    min-height:100px;
}
.dataDiv table{
    table-layout:fixed;
    width:100%;
}
.dataDiv td{
    -ms-word-break: break-all;
    word-break: break-all;
    white-space:nowrap;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    text-align: center;
    height:30px;
}
.dataDiv table thead tr{
    background-color:#F6F6F6;
    color: #fb9247;
}
.dataDiv tbody tr:not(:last-child) td{
    border-bottom:1px dashed #CCC;
}

/* 附件列表 */
.articleShell .attachmentList {
    margin: 0 auto 20px;
    display: none;
}

.articleShell .attachmentList > table {
    width: 100%;
}

.articleShell .attachmentList > table tr td {
    padding: 5px 0;
}

.articleShell .attachmentList > table tr td.labelTd {
    width: 100px;
    text-align: right;
    padding-right: 10px;
}

.articleShell .attachmentList > table tr td.imgTd {
    width:35px;
}

.articleShell .attachmentList > table tr td.fileTd {
}

.articleShell .attachmentList > table tr td.fileTd:hover {
    cursor: pointer;
    color: #0893db;
}

/* 文章底部的线 */
.articleShell > hr {
    background: #c5c5c5;
}


/* 无悬浮样式 */
.noneHover:hover{
    text-decoration: none !important;
}