﻿

.article-class-title {
    font-size: 18px;
    font-weight: bold;
    color: #0180B0;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px dashed #0180B0;
}

.inews {
    float: left;
    width: 100%;
    padding-bottom: 9px;
}

.inews .inpic {
    float: left;
    padding-left: 10px;
}

.inews .inpic img {
    width: 280px;
    height: 235px;
    border: 1px solid #F3F3F3;
    border-radius: 5px;
}

.inews .inword {
    width: 100%;
    padding-left: 310px;
    padding-right: 4px;
    line-height: 21px;
    color: #7d7d7d;
}

.inews .inword h2 {
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 6px;
    margin: 10px 0 auto;
}

.inews .inword h2 a {
    color: #2f2f2f;
}

.inews .inword h2 .date-time {
    margin-left: 10px;
    font-weight: normal;
    font-size: 14px;
    color: #888;
}

.inews .inword .desc {
    height: 165px;
    display: -webkit-box;
    -webkit-line-clamp: 6; /* 限制4行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 28px;
    font-size: 16px;
    text-indent: 4rem;
}

.inews .inword .show-more {
    display: block;
    text-align: right;
    margin-top: 15px;
}



.inewslist {
    padding: 0;
    margin: 0;
    list-style-position: outside;
    list-style-type: none;
}

.inewslist li {
    float: left;
    width: 100%; /* 父容器宽度100% */
    display: flex; /* 启用Flex布局 [11](@ref) */
    align-items: center; /* 垂直居中对齐 */
}

.inewslist li a {
    flex: 1; /* 占据剩余全部宽度 [11](@ref) */
    min-width: 0 !important; /* 强制覆盖默认最小宽度 允许内容被压缩（关键步骤） */
    width: 0; /* 确保 flex-grow 基于0宽度扩展 */
    white-space: nowrap; /* 禁止文本换行 [8,10](@ref) */
    overflow: hidden; /* 隐藏溢出内容 */
    text-overflow: ellipsis; /* 溢出部分显示省略号 */
    padding-left: 5px;
    font-size: 16px;
    line-height: 35px;
    border-radius: 5px;
}

.inewslist li a:hover {
    background: #E0F7FF;
}

.inewslist li .news-class {
    white-space: nowrap;
    margin: 0 10px 0 20px;
    color: #888;
}

.inewslist li .date-time {
    width: 90px; /* 固定宽度200px */
    flex-shrink: 0; /* 禁止宽度压缩 */
    text-align: right; /* 内容右对齐 */
    color: #888;
}

.inewslist li .glyphicon {
    padding-right: 10px;
    color: #00aeef;
    font-size: 10px;
}

.inewslist li.no-keyword {
    text-align: center;
    line-height: 120px;
    font-size: 26px;
    display: block;
    color: #999;
}



.right_content .article-title {
    text-align: center;
    font-size: 24px;
}


.right_content .article-info {
    display: block;
    width: 100%;
    text-align: center;
}

.right_content .article-info span {
    margin: 0 20px;
    color: #999;
    line-height: 30px;
}

.right_content .article-content img {
    max-width: 100%;
    height: auto !important;
}

.right_content .article-content p img {
    display: inline-block; /* 将图片转为块级，避免内联特性干扰 */
    margin: 15px auto;
}

#eWebEditor_Excel_Sheet_Div1 {
    border: 1px solid #D4D4D4;
    border-radius: 5px;
    overflow: auto;
    position: relative;
}


@media (max-width: 500px) {
    .inewslist li .news-class {
        display: none;
    }
}