﻿/*分页*/
#Paging a {
    text-decoration: none;
}

#Paging a:hover {
    text-decoration: none;
}

#Paging {
    color: #ccc;
    text-align: center;
    clear: both;
    /* padding-top: 30px; */
    padding-bottom: 30px;
    overflow: hidden;
    margin: 0 auto;
    height: 30px;
}

#Paging a {
    display: inline-block;
    color: #8a8282;
    display: inline-block;
    height: 25px;
    line-height: 25px;
    padding: 0 10px;
    border: 1px solid #ddd;
    margin: 0 2px;
    border-radius: 4px;
    vertical-align: middle;
}

#Paging a:hover {
    text-decoration: none;
    border: 1px solid #742828;
    background-color: #742828;
    color: #fff;
}

#Paging span.current {
    display: inline-block;
    height: 25px;
    line-height: 25px;
    padding: 0 10px;
    margin: 0 2px;
    color: #fff;
    background-color: #742828;
    border: 1px solid #742828;
    vertical-align: middle;
}

#Paging span.disabled {
    display: inline-block;
    height: 25px;
    line-height: 25px;
    padding: 0 10px;
    margin: 0 2px;
    color: #bfbfbf;
    /* background: #f2f2f2; */
    border-radius: 4px;
    border: 1px solid #bfbfbf;
    vertical-align: middle;
}
/*文章*/
.Article {
    width: 80%;
    margin: 0 auto;
}
.Article img {
max-width:100%;
height:auto!important ;
}
.Article .Article_title {
    font-weight: bold;
    text-align: center;
    font-size: 22px;
    padding-bottom: 10px;
    padding-top: 10px;
    color: #c2281f;
}

.Article .Article_time {
    width: 100%;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin: auto;
    border-bottom: 1px dotted #222222;
    color: #222222;
    margin-bottom: 25px;
}

.Article .Article_content {
    width: 100%;
    padding-top: 10px;
    height: auto !important;
    min-height: 450px;
    line-height: 28px;
    color: #222222;
    font-size: 14px;
}
.Article .Article_content video{
    display: block;
    width: 100%!important;
    height: 400px;
}
.article-page{
    display:table;
    width:100%;
    margin-top: 20px;
}
.article-page li {
    float: left;
    width: 33.33%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.article-page li:nth-child(1) {
    padding-right: .8rem;
}
.article-page li:nth-child(2) {
    padding: 0 .4rem;
}
.article-page li:nth-child(3) {
    padding-left: .8rem;
}
.article-page li a {
    display: block;
    padding: 0 1.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    position: relative;
    text-align: center;
    color: #fff;
    font-size: 13px;
    background: #742828;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
    overflow: hidden;
}
.article-page li a:after {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #fff;
    content: '';
    display: block;
    top: 50%;
    right: .75rem;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.article-page li a:hover {
    background: #996969;
}


@media screen and (max-width:750px ) {
    .article-page{
        display:table;
        width:100%;
        margin-top: 20px;
    }
    .article-page li {
        float: left;
        width: 100%;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .article-page li:nth-child(1) {
        padding-right: 0;
    }
    .article-page li:nth-child(2) {
        padding: 0;
        margin: 10px 0;
    }
    .article-page li:nth-child(3) {
        padding-left: 0;
    }
    .article-page li a {
        display: block;
        padding: 0 1.5rem;
        height: 2.5rem;
        line-height: 2.5rem;
        position: relative;
        text-align: center;
        color: #fff;
        font-size: 13px;
        background: #742828;
        -webkit-transition: all .2s ease;
        -moz-transition: all .2s ease;
        transition: all .2s ease;
        overflow: hidden;
    }
    .article-page li a:after {
        position: absolute;
        width: 0;
        height: 0;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 7px solid #fff;
        content: '';
        display: block;
        top: 50%;
        right: .75rem;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .article-page li a:hover {
        background: #996969;
    }
}