﻿.banner {
    height: 98px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.banner .container{
    position: relative;
}

.banner-colName{
    position: absolute;
    top: 16px;
    left: calc(50% - 100px);
    width: 200px;
    height: 60px;
    background: #b00328;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner-colName h2{
    color: #ffffff;
    font-size: 18px;
    position: relative;
}
.banner-colName h2::after{
    content: '';
    width: 38px;
    height: 6px;
    background: #ffffff;
    position: absolute;
    bottom: -15px;
    left: calc(50% - 19px);
}
@media (min-width: 992px) {
    .banner {
        height: 500px;
    }
    .banner-colName{
        position: absolute;
        top: 0;
        left: 0;
        width: 300px;
        height: 300px;
        background: #b00328;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .banner-colName h2{
        color: #ffffff;
        font-size: 36px;
        position: relative;
    }
    .banner-colName h2::after{
        bottom: -25px;
        left: calc(50% - 36px);
    }
}

.page-main{
    background-color: #FFFFFF;
    box-sizing: border-box;
    padding: 10px;
    margin-top: 0;
}
@media (min-width: 992px) {
    .page-main{
        padding: 48px;
        margin-top: 40px;
    }
}

.left-columnHeader{
    background-color: #B00328;
    padding: 20px 0;
    color: #FFFFFF;
    text-align: center;
    border-radius: 4px 4px 0 0;
    margin-top: 20px;
}
.left-columnHeader h2{
    margin-bottom: 0;
}
.left-columnBody{
    background-color: #EEEEEE;
    padding: 10px 10px 10px 10px;
    border-radius: 4px;
    display: flex;
    flex-direction: row;
    margin: 10px;
    margin-bottom: 0;
}
@media (min-width: 992px) {
    .left-columnHeader{
        padding: 30px 0;
        margin-top: 0;
    }
    .left-columnBody{
        padding: 20px;
         margin: 0;
        margin-bottom: 0;
        flex-direction: column;
    }
}
.left-columnBody-item{
    background-color: #FFFFFF;
    padding: 10px 0;
    display: block;
    border-radius: 4px;
    flex: 1;
    /*width: 33.33%;*/
    margin: 0 5px 0 5px;
}
.left-columnBody-item:last-child{
    margin-bottom: 0;
}
@media (min-width: 992px) {
    .left-columnBody-item{
        margin-bottom: 10px;
    }
}
.left-columnBody-item.active{
    background-color: rgba(176, 3, 40, 1);
}
.left-columnBody-item h3{
    color: #333333;
    text-align: center;
    margin-bottom: 0;
    font-size: 18px;
}
.left-columnBody-item.active:hover h3{
    color: #FFFFFF;
}
@media (min-width: 992px) {
    .left-columnBody-item{
        margin-bottom: 20px;
        padding: 20px 0;
    }
}
.left-columnBody-item.active h3{
    color: #FFFFFF;
}
.left-columnBody-item:hover h3{
    color: #B00328;
}
.left-columnFooter{
    margin-top: 48px;
}
.left-columnFooter img{
    width: 100%;
}
.right-columnTitle{
    margin-bottom: 24px;
}
.right-columnTitle h2{
    font-weight: 700;
    font-size: 30px;
    color: #b00328;
    position: relative;
    padding-left: 22px;
}
.right-columnTitle h2:before{
    content: '';
    width: 6px;
    height: 31px;
    background: #b00328;
    position: absolute;
    top: 4px;
    left: 0;
}
.article-header{
    padding-top: 20px;
    padding-bottom: 14px;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
}
.article-title{
    font-weight: 700;
    font-size: 18px;
    color: #333;
    margin-bottom: 14px;
    text-align: center;
}
.article-info{
    font-size: 14px;
    color: #999;
    text-align: center;
}
.article-body{
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    text-indent: 2em;
    padding: 16px 0;
}
@media (min-width: 992px) {
    .article-header{
        padding-top: 39px;
        padding-bottom: 24px;
    }
    .article-title{
        font-size: 28px;
        margin-bottom: 14px;
    }
    .article-info{
        font-size: 16px;
    }
    .article-body{
        font-size: 20px;
        padding: 22px 0;
    }
}
.artcile-hasPage{
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
}
.artcile-hasPage-PreNews{
    margin: 5px 0 5px 0;
}
.artcile-hasPage-NextNews{
    margin: 5px 0 5px 0;
}