@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
}

a {
    text-decoration: none;
}

/* ---------------------------------------------------- */
.news-list {
    border: 1px solid #E9E9E9;
    border-top: 3px solid #bf0614;
    margin-bottom: 30px;
}

.news-list .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 34px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #e9e9e9;
}

.news-list .top .type {
    display: flex;
    align-items: center;
    height: 34px;
}

.news-list .top .type a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    background-color: #bf0614;
    color: #fff;
    padding: 0 30px;
    height: 34px;
}

.news-list .top .more {
    color: #333;
    margin-right: 15px;
}

.news-list .top .more:hover {
    color: #bf0614;
}

.news-list .top a:hover {
    text-decoration: none;
}

.news-list .bottom {
    padding: 10px 0;
}

.news-list .bottom .info-item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    padding: 0 20px;
    font-size: 15px;
    color: #333;
}

.news-list .bottom .info-item:hover {
    color: #bf0614;
}

.news-list .bottom .info-item.active {
    font-size: 16px;
    font-weight: bold;
}

.news-list .bottom .info-item.line {
    border-bottom: 1px dotted #ccc;
}

.news-list .bottom .info-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ---------------------------------------------------- */
.news-list .bottom .tag-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    padding: 0 20px;
}

.news-list .bottom .tag-line .tag {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    font-size: 15px;
    color: #bf0614;
}

.news-list .bottom .tag-line .info-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 15px;
    color: #333;
}

.news-list .bottom .tag-line .info-text:hover {
    color: #bf0614;
}

/* ---------------------------------------------------- */

.news-list .bottom .tag-line .rank {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    font-size: 16px;
    font-style: italic;
    color: #f00;
}

/* ------------------------------ */
.link-area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border: 1px dashed #bf0614;
    padding: 5px;
    margin-bottom: 30px;
}

.link-area a {
    font-size: 12px;
    color: #333;
    padding: 10px;
}

.link-area a:hover {
    color: #bf0614;
}

/* ---------------------------------------------------- */
.footer {
    background-color: #333333;
    padding: 20px 0;
}

.footer .info1 {
    font-size: 16px;
    color: #fff;
    text-align: center;
    line-height: 1.5;
}

.footer .info2 {
    font-size: 14px;
    color: #fff;
    text-align: center;
    line-height: 2;
}

.footer .info2 a {
    color: #fff;
    margin-right: 15px;
}

.footer .info2 a:hover {
    color: #bf0614;
}

/* ---------------------------- */
.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #eee;
    border-radius: 4px
}

.breadcrumb>li {
    display: inline-block;
}

.breadcrumb>li a {
    color: #666;
}

.breadcrumb>li+li:before {
    padding: 0 5px;
    color: #aaa;
    content: "/\00a0"
}

.breadcrumb>.active {
    color: #bf0614;
}