* {
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-family: "微软雅黑", "Microsoft YaHei";
    box-sizing: border-box;
}
/* @font-face {
  font-family: 'sourceHanSansCN';
  src: url(https://resource.yesky.com/TLimages2023/CIE/common/SourceHanSansCN-Normal.otf);
} */
body {
    min-width: 1200px;
}
.container {
    width: 1200px;
    margin: 0 auto;
}
input {
    padding: 0;
    margin: 0;
    font-size: 14px;
    border: 0;
}
li {
    list-style-type: none;
    list-style: none;
}
a {
    text-decoration: none;
    display: inline-block;
}
img {
    max-width: 100%;
}
.flexbox {
    display: flex;
}
.flexbox-space {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
 /* 顶部导航 */
header {
    height: 80px;
    line-height: 80px;
    background-color: #fff;
}
.head_logo img {
    vertical-align: middle;
}
.head_nav a {
    font-size: 18px;
    /* font-weight: 600; */
    color: #2d2d2d;
    line-height: 43px;
    margin: 0 25px;
    position: relative;
}
.head_nav a:last-child {
    margin: 0 0 0 25px;
}
.head_nav a:hover::before,
.head_nav a.active::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 4px;
    border-radius: 4px;
    background-color: #1a63c4;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%,-50%);
}
/* 详情页banner样式 */
.brief-banner {
    width: 100%;
    height: 350px;
    background: url(../images/brief_head_bg_1.png) no-repeat center top;
    background-size: cover;
    padding-top: 30px;
}
.brief-logo img {
    padding-left: 20px;
    padding-right: 20px;
}
.brief-banner h1 {
    text-align: center;
}
/* 导航面包屑 */
.route {
    padding: 24px 0;
    border-bottom: 1px solid #ebebeb;
}
.route a {
    color: #515151;
    position: relative;
    padding-right: 29px;
}
.route a::after {
    content: "";
    position: absolute;
    background: url(../images/right.png) no-repeat;
    width: 11px;
    height: 13px;
    top: 4px;
    right: 8px;
}
.route a:last-child:after{
    background: none;
}
.route a:hover {
    color: #0065c8;
}

footer p {
    background-color: #0b1e51;
    height: 55px;
    line-height: 55px;
    color: #a5b2d3;
    font-size: 13px;
    text-align: center;
}
footer.detail p {
    background-color: #013161;
}

footer a {
    font-size: 13px;
    color: #a5b2d3;
}

/* 分页 */
.pages {
    margin: 30px auto 10px;
    justify-content: center;
  }
.pages .prev,
.pages .next {
    width: 61px;
    height: 29px;
    line-height: 28px;
    text-align: center;
    margin: 5px;
    border: 1px solid #e5e5e5;
}
.pages .prev a,
.pages .next a {
    color: #4a4a4a;
}
  /* 第一页或最后页时上一页/下一页不显示 */
.pages .prev.disable,
.pages .next.disable {
    display: none;
}
.pages .pages-list .page-num {
    width: 29px;
    height: 29px;
    line-height: 29px;
    text-align: center;
    border: 1px solid #e5e5e5;
    margin: 5px;
    display: block;
    cursor: pointer;
    font-size: 14px;
    color: #4a4a4a;
}
.pages .pages-list span.page-num {
    border: none;
}
.pages .pages-list a.page-num-current {
    background-color: #7bbbfd;
    color: #fff;
}






