 /* 头部 */
 .header {
    padding: 15px;
    height: 130px;
    display: flex;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    width: 100px;
}
.logo h1 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-left: 10px;
    color: #9d0711;
}
.logo span{
    font-size: 16px;
    font-weight: 700;
    margin-left: 10px;
    color: #9d0711;
}
.phone {
    display: flex;
    align-items: center;
}
.phone img {
    width: 70px;
}
.phone h3 {
    font-size: 16px;
    font-weight: 700;
    margin-left: 15px;
    color: #9d0711;
}
.phone h1 {
    font-size: 30px;
    font-weight: 700;
    margin-left: 10px;
    color: #9d0711;
}
.phone span{
    font-size: 25px;
    font-weight: 700;
    margin-left: 10px;
    color: #9d0711;
}

/* 导航 */
.nav {
    height: 45px;
    background: #9d0711;
}
.nav ul {
    padding: 0px 32px;
}
.nav ul li {
    float: left;
    position: relative;
    padding: 0;
    line-height: 45px;
    background-color: #9d0711;
}
.nav ul li a {
    display: block;
    color: rgb(255, 255, 255);
    font-size: 15px;
    font-weight: bold;
    padding: 0px 18px;
    text-decoration: none;
}
.nav ul li a:hover {
    background-color: #b13a42;
    color: #ffffff;
}
/* 主体 */
.main {
    padding: 0 15px;
    min-height: 650px;
}
/* 标题 */
.article_title h1 {
    color: #000000;
    display: inline-block;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
    text-transform: uppercase;
}
.article_title h1::after {
    background: #9d0711;
    bottom: -1px;
    left: 0px;
    content: "";
    height: 4px;
    position: absolute;
    width: 50px;
}
.title {
    text-align: center;
}
.title h3 {
    color: #000;
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
    text-transform: uppercase;
}
.title h3::before {
    background: #000 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 100%;
}
.title h3::after {
    background: #9d0711 none repeat scroll 0 0;
    bottom: -1px;
    content: "";
    height: 4px;
    left: 30%;
    position: absolute;
    width: 40%;
    z-index: 222;
}

 /*分页*/
 .pagination {text-align: center;margin-top: 20px;}
 .pagination li {display: inline-block;margin-right: -1px;padding: 5px;border: 1px solid #e2e2e2;min-width: 20px;text-align: center;}
 .pagination li.active {background: #9d0711;color: #fff;border: 1px solid #9d0711;}
 .pagination li a {display: block;text-align: center;}

/* 底部 */
.footer {
    background: #9d0711;
}
.footer_content {
    padding: 20px;
}
.footer_content p {
    font-size: 16px;
    text-align: center;
    color: #ffffff;
}