
.left-block-line {
}

    .left-block-line:before {
        content: '';
        position: absolute;
        left: 15px;
        top: auto;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
        margin-bottom: 1rem;
        height: 1.5rem;
        width: 0.5rem;
        background-color: #8F0909;
        border-radius: 0.625rem
    }

.border-line-header {
    padding-bottom: 1rem;
}

    .border-line-header:after {
        content: '';
        left: auto;
        top: auto;
        bottom: 0;
        right: auto;
        height: 2px;
        margin-left: 15px;
        margin-right: 15px;
        width: 100%;
        background-color: #f2f2f2;
    }

.homepage-part-title a {
    font-size: 2rem;
    padding-left: 1rem;
    color: #323334;
    font-family: "苹方", "微软雅黑";
    font-weight: bold;
    line-height: 3.7rem;
}

.homepage-part-more {
    font-size: 1rem;
    display: block;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 5rem;
    margin-left: auto;
    margin-right: 0rem;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
    background-color: #EFEFEF;
    border-radius: 1.25rem;
    color: #666666;
    float: right;
}

.homepage-bottom-more {
    font-size: 1rem;
    display: block;
    padding: 0.25rem;
    width: 80%;
    border: solid 1px #BBBBBB;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
    background-color: #EFEFEF;
    color: #666666;
    float: center;
}

.carousel-caption {
    font-size: 1rem;
}


/*新闻动态*/
.panel-news-list {
    padding-top: 1rem;
    padding-bottom: 2rem;
}

    .panel-news-list .item {
        padding-top: 0.5rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .panel-news-list .line-item:after {
        content: '';
        left: auto;
        top: auto;
        bottom: 0;
        right: auto;
        height: 1px;
        margin-left: 1.5rem;
        margin-right: 2rem;
        margin-top: 0.5rem;
        width: 100%;
        background-color: #f2f2f2;
    }

@media (min-width: 768px) {

    .panel-dt-list .item .right-cell:before, .panel-tz-list .item .right-cell:before {
        content: '';
        position: absolute;
        left: 0px;
        top: auto;
        bottom: auto;
        right: auto;
        margin-top: 1.2rem;
        margin-bottom: 1rem;
        height: 1rem;
        width: 1px;
        background-color: #a9a9a9;
        border-radius: 0.625rem
    }
}

.panel-news-list .item .group-title {
    font-size: 0.875rem;
    color: #ba0000;
    line-height: 1.5rem;
    font-weight: bold;
}

.panel-news-list .item .title {
    height: auto;
    vertical-align: middle;
    display: table-cell;
    font-size: 1.125rem;
}

    .panel-news-list .item .title .glyphicon {
        display: table-cell;
    }

    .panel-news-list .item .title .glyphicon-chevron-right:before {
        font-size: 0.7rem;
        padding-right: 0.5rem;
    }

    .panel-news-list .item .title a, .panel-news-list .item .title a:link {
        font-size: 1rem;
        color: #222222;
        line-height: 1.5rem;
        display: table-cell;
        text-decoration: none;
    }

.panel-news-list .item .date {
    font-size: 0.75rem;
    font-style: italic;
    line-height: 1rem;
}


.panel-news-list .cc {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #FFFFFF;
}


.panel-news-list .item .title {
    color: #333;
    font-weight: 800;
    font-size: 1.125rem;
}

.panel-news-list .item .description {
    padding-left: 2rem;
    color: #666;
    font-size: 0.875rem;
    /*max-height: 3rem;  */
    overflow: hidden; /* 确保文本溢出容器时被隐藏 */
    display: -webkit-box; /* 使用弹性盒子布局模型 */
    -webkit-line-clamp: 2; /* 限制在3行 */
    -webkit-box-orient: vertical; /* 垂直排列盒子 */
    text-overflow: ellipsis; /* 多行文本溢出显示为省略号 */
    white-space: normal; /* 使用正常的白空格处理方式 */
}

    .panel-news-list .item .description a, .panel-news-list .item .description a:link {
        color: #666;
        text-decoration: none;
        ;
    }

.panel-news-list .item .date {
    color: #b3b3b3;
    padding-left: 2rem;
    padding-top: 0.3rem;
}



.white-panel {
    background-color: #fff;
    min-height: 5rem;
    border-left: 1rem solid #fff;
}

.white-left-border {
    border-left: 1rem solid #fff;
}

.grey-border {
    border-left: 1rem solid #F3F3F3;
}

.dt-item {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

    .dt-item .catgory-info {
        /* border-right: 1px solid #999;*/
        text-align: right;
        color: #666;
        position: relative;
        padding-left: 20px; /* 可根据需要调整间距 */
    }

        .dt-item .catgory-info::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            border-right: 1px solid #666; /* 线的颜色和样式 */
        }

    .dt-item .title {
        color: #000;
        /*max-height: 3rem;  */
        overflow: hidden; /* 确保文本溢出容器时被隐藏 */
        display: -webkit-box; /* 使用弹性盒子布局模型 */
        -webkit-line-clamp: 2; /* 限制在3行 */
        -webkit-box-orient: vertical; /* 垂直排列盒子 */
        text-overflow: ellipsis; /* 多行文本溢出显示为省略号 */
        white-space: normal; /* 使用正常的白空格处理方式 */
    }

        .dt-item .title a, .dt-item .title a:link {
            color: #333;
            text-decoration: none;
        }

    .dt-item .catgory-info .catgory {
        font-weight: 500;
    }

    .dt-item .catgory-info .date {
        font-family: Georgia;
        font-size: 0.8rem;
        font-weight: 400;
    }

.xm-item {
}

    .xm-item .title {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        font-size: 1.125rem;
        color: #333;
    }

        .xm-item .title a, .xm-item .title a:link {
            color: #333;
            text-decoration: none;
        }

    .xm-item .date {
        padding-left: 1.5rem;
        padding-top: 0.5rem;
        font-size: 0.75rem;
        color: #999
    }

    .xm-item .description {
        font-size: 0.875rem;
        max-height: 10.5rem;
        line-height: 1.5rem;
        color: #999;
        padding: 1.5rem;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        white-space: normal;
    }

    .xm-item .detail-row {
        padding: 1.5rem;
        color: #666;
    }

        .xm-item .detail-row .detail {
            display: inline-block;
            border: 1px solid #333;
            font-size: 0.875rem;
            padding-left: 0.5rem;
            padding-right: 0.5rem;
            text-decoration: none;
            color: #666;
        }

.link-item {
}

    .link-item .title {
        font-size: 1rem;
        font-weight: 400;
        line-height: 2.5rem;
    }

        .link-item .title a, .link-item .title a:link {
            color: #333;
            text-decoration: none;
        }

.cc-item {
}

    .cc-item .title {
        font-size: 1.2rem;
        font-weight: 700;
        /*        width: 8rem;*/
        height: 5rem;
        display: table-cell;
        vertical-align: middle;
        color: #333;
        text-decoration: none;
        /*left:2rem;
        top: 30%;
        transform: translateY(-50%);*/
    }

        .cc-item .title:link {
            color: #333;
            text-decoration: none;
        }

.lw-item {
}

    .lw-item .title {
        padding-top: 1rem;
        padding-bottom: 1rem;
        padding-left: 3rem;
        font-size: 1rem;
        color: #333;
    }

        .lw-item .title a, .lw-item .title a:link {
            color: #333;
            text-decoration: none;
        }
