﻿
.news {
    background-color: #EBEBEB;
    padding: 20px 0;
}

    .news .top {
        padding: 15px 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
.descript-tops{
    display:none;
}
.container .row{
    margin-top: 33px;
}
        .news .top .drop-list {
            text-align: center;
            width: 153px;
            height: 37px;
            position: relative;
            border: 1px solid #C01120;
            border-radius: 4px;
            padding: 0 12px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            font-size: 16px;
            font-weight: bold;
            color: #c01120;
            cursor: pointer;
        }

            .news .top .drop-list span {
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                user-select: none;
                pointer-events: none;
            }

            .news .top .drop-list i {
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                user-select: none;
                pointer-events: none;
            }

            .news .top .drop-list .drop {
                position: absolute;
                top: calc(100% + 1px);
                width: 100%;
                left: 0;
                height: 0;
                overflow: hidden;
                z-index: 9;
                border: 1px solid transparent;
                background-color: #fff;
                max-height: 184px;
                overflow-y: overlay;
                overflow-x: hidden;
                -webkit-transition: all linear .2s;
                -o-transition: all linear .2s;
                transition: all linear .2s;
            }

                .news .top .drop-list .drop.show {
                    border: 1px solid #c01120;
                    height: 184px;
                }

                /* width */
                .news .top .drop-list .drop::-webkit-scrollbar {
                    width: 5px;
                }

                /* Track */
                .news .top .drop-list .drop::-webkit-scrollbar-track {
                    background: transparent;
                }

                /* Handle */
                .news .top .drop-list .drop::-webkit-scrollbar-thumb {
                    background: #c01120c5;
                    border-radius: 1px
                }

                    /* Handle on hover */
                    .news .top .drop-list .drop::-webkit-scrollbar-thumb:hover {
                        background: #c01120;
                    }

                .news .top .drop-list .drop .drop-item {
                    text-transform: capitalize;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-orient: vertical;
                    -webkit-box-direction: normal;
                    -ms-flex-direction: column;
                    flex-direction: column;
                    -webkit-box-align: start;
                    -ms-flex-align: start;
                    align-items: flex-start;
                    padding: 10px;
                    color: #c01120;
                }

    .news .content {
        /* margin-top: 33px; */
    }

        .news .content .item {
            position: relative;
            overflow: hidden;
            margin-bottom: 12px;
            border-radius: 5px;
        }

            .news .content .item .img {
                position: relative;
                width: 100%;
                overflow: hidden;
                height: 250px;
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
            }

                .news .content .item .img img {
                    -webkit-transition: all linear .4s;
                    -o-transition: all linear .4s;
                    transition: all linear .4s;
                }

                .news .content .item .img:hover img {
                    -webkit-transform: scale(1.1);
                    -ms-transform: scale(1.1);
                    transform: scale(1.1);
                }

                .news .content .item .img .decor {
                    position: absolute;
                    width: 242%;
                    height: 224%;
                    background-color: rgba(0, 0, 0, 0.507);
                    color: #fff;
                    opacity: 0;
                    -webkit-transform: scale(.5);
                    -ms-transform: scale(.5);
                    transform: scale(.5);
                    font-size: 18px;
                    -webkit-transition: all linear .3s;
                    -o-transition: all linear .3s;
                    transition: all linear .3s;
                }

                .news .content .item .img:hover .decor {
                    -webkit-transform: scale(1);
                    -ms-transform: scale(1);
                    transform: scale(1);
                    opacity: 1;
                }

            .news .content .item .content {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
                color: #222;
                background-color: #fff;
                padding: 10px 0;
                transition: all linear .2s;
            }

                .news .content .item .content:hover {
                    background-color: #2724252e;
                }

                    .news .content .item .content:hover .name {
                        color: var(--default-color-3) !important;
                    }

                    .news .content .item .content:hover .description {
                        color: #fff;
                    }

                    .news .content .item .content:hover .bot {
                        color: var(--default-color-3);
                    }

                .news .content .item .content .name {
                    font-family: 'OpenSB';
                    font-size: 15px;
                    color: #4f4f4f;
                    line-height: calc(100% + 6px);
                    -webkit-user-select: none;
                    -moz-user-select: none;
                    -ms-user-select: none;
                    user-select: none;
                    overflow: hidden;
                    -o-text-overflow: ellipsis;
                    text-overflow: ellipsis;
                    -webkit-line-clamp: 2;
                    -webkit-box-orient: vertical;
                    display: -webkit-box;
                    text-transform: capitalize;
                    -webkit-transition: all linear .2s;
                    -o-transition: all linear .2s;
                    transition: all linear .2s;
                    padding: 0 10px;
                }

                .news .content .item .content .description {
                    font-size: 14px;
                    padding-top: 2px;
                    overflow: hidden;
                    padding: 0 10px;
                    -o-text-overflow: ellipsis;
                    text-overflow: ellipsis;
                    -webkit-line-clamp: 2;
                    color: #616161;
                    -webkit-box-orient: vertical;
                    display: -webkit-box;
                    line-height: calc(100% + 5px);
                    padding-top: 8px;
                }

                .news .content .item .content .bot {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    -webkit-user-select: none;
                    -moz-user-select: none;
                    -ms-user-select: none;
                    user-select: none;
                    /* padding: 15px 0; */
                    border-top: 1px solid #E4E4E4;
                    margin-top: 10px;
                    padding: 5px 10px;
                }

                .news .content .item .content .see-count:nth-child(2) {
                    padding-left: 20px;
                }

                .news .content .item .content .see-count {
                    font-size: 13px;
                    opacity: .5;
                    padding-top: 8px;
                }

                    .news .content .item .content .see-count i {
                        padding-right: 5px;
                    }

                .news .content .item .content .description::-moz-selection {
                    background-color: var(--bg-selection);
                    color: var(--color-selection);
                }

                .news .content .item .content .description::selection {
                    background-color: var(--bg-selection);
                    color: var(--color-selection);
                }
.item {
    position: relative !important;
    background: #fff !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.item:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15) !important;
}

.item .img img {
    transition: transform 0.4s ease !important;
}

.item:hover .img img {
    transform: scale(1.05) !important;
}

.item .decor {
    /* position: absolute !important; */
    /* top: 0 !important; */
    /* left: 0 !important; */
    /* right: 0 !important; */
    /* bottom: 0 !important; */
    background: rgba(0, 0, 0, 0.4) !important;
    /* opacity: 0 !important; */
    /* transition: opacity 0.3s ease !important; */
    /* color: #fff !important; */
    font-size: 24px !important;
}

.item:hover .decor {
    opacity: 1 !important;
}

.item .name {
    /* display: block !important; */
    font-weight: bold !important;
    /* font-size: 16px !important; */
    color: #333 !important;
    margin-top: 5px !important;
    transition: color 0.3s ease !important;
}

.item:hover .name {
    /* color: var(--default-color-3); */
}


.item .bot {
    margin-top: 12px !important;
    display: flex !important;
    justify-content: space-between !important;
    font-size: 13px !important;
    color: #020B4F;
}
