.w1400 {
    width: 1280px;
    margin: 0 auto;
}

.center {
    background-color: #e4f2ff;
    padding-bottom: 30px;
}

.crumb {
    font-size: 14px;
    line-height: 56px;
}

.detail {
    padding: 30px 40px;
    background-color: #fff;
    border-radius: 10px;
    box-sizing: border-box;
}

.detail-header {
    padding-bottom: 20px;
    border-bottom: 1px solid #d7d7d7;
}

.detail-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    line-height: 56px;
}

.detail-info {
    margin-top: 10px;
    text-align: center;
    color: #7f7f7f;
}

.detail-info span {
    margin-right: 20px;
}

.detail-text {
    margin-top: 30px;
    font-size: 18px;
    line-height: 36px;
}

.detail-text p {
   /* text-indent: 2em; */
}

.list-title {
    position: relative;
    height: 28px;
    padding-left: 20px;
    font-size: 20px;
    font-weight: bold;
    line-height: 28px;
}

.list-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: #3b6aaf;
    border-radius: 2px;
}

.tabs-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tabs li {
    height: 40px;
}

.tabs li a {
    padding: 10px 30px;
    border-radius: 20px;
    background-color: #f2f2f2;
    font-size: 16px;
}

.tabs li.active a {
    background-image: url(../images/tabs.png);
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}

.tabs-more {
    width: 90px;
}

.tabs-more a {
    font-size: 14px;
    color: #416eb0;
}

.news-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.news-item {
    width: calc(100% / 3 - (40px / 3));
    margin-bottom: calc(40px / 3);
    border-radius: 12px;
    overflow: hidden;
    background-color: #f6f7fa;
}

.news-item .list-desc{
    display: none;
}

.list-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
}

.list-content {
    padding: 20px;
}

.lsit-title {
    font-size: 17px;
    line-height: 26px;
}

.list-info {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 14px;
    color: #aaaaaa;
}

.no-img .list-content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.no-img .list-img,
.news-item .list-img{
    display: none;
}

.no-img .list-desc{
    display: none;
    margin-top: 30px;
    font-size: 14px;
    line-height: 24px;
    color: #555555;
}

.page ul {
    display: flex;
    justify-content: center;
    line-height: 35px;
    margin: 50px 0 20px;
}

.page ul li {
    height: 35px;
    padding: 0 10px;
    border: 1px solid #dbdbdb;
    margin-right: 10px;
    border-radius: 4px;
    cursor: pointer;
    line-height: 35px;
}

.page ul li.on {
    background-color: #20528f;
    color: #fff;
    border: none;
}

.page ul li.on a {
    color: #fff;
}

.page ul .num {
    width: 60px;
    height: 35px;
    margin: 0 5px 0;
    border-radius: 4px;
    border: 1px solid #777777;
    text-align: center;
}

.page ul .confirm {
    margin-left: 10px;
}

.page ul .active,
.page ul .confirm {
    background-color: #20528f;
    color: #fff;
    border: none;
}