/* tab栏切换区域 */

.tab {
    margin-top: 6.25vw;
}

.tab-ul {
    display: flex;
}

.tab-list li {
    display: inline-block;
    width: 31.5%;
    height: 90px;
    line-height: 90px;
    /* padding: 0 20px; */
    margin-right: 30px;
    text-align: center;
    font-size: 24px;
    background-color: #f5f6f6;
    cursor: pointer;
    /* margin-right: 30px; */
}

.tab-list .current {
    background-color: #005ac9;
    color: #fff;
}

.item {
    display: none;
}


/* tab搜索框样式 */

.news-search-box {
    display: flex;
    width: 100%;
    padding-top: 46px;
}

.news-search-input {
    display: flex;
    align-items: center;
    padding-left: 24px;
    width: 80%;
    height: 60px;
    background-color: #f0f0f0;
    margin-right: 30px;
    border-radius: 3px;
}

.news-search-input h5 {
    font-size: 18px;
    color: #005ecf;
    font-weight: normal;
    margin-right: 20px;
}

.news-search-input input {
    border: none;
    background-color: #f0f0f0;
    margin-top: -2px;
    padding-left: 18px;
    border-left: 2px solid #005ecf;
}

.news-search-btn {
    width: 20%;
    height: 60px;
}

.news-search-btn button {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    background-color: #005ecf;
    font-size: 18px;
    color: #fff;
    border-radius: 3px;
}

.ft {
    clear: both;
}


/* 新闻列表样式 */

.news-list-box {
    width: 100%;
    display: flex;
}

.news-list-content {
    display: flex;
    padding: 46px 0;
    border-bottom: 1px solid #b3b4b2;
}

.news-thumbnail-box {
    width: 200px;
    height: 200px;
    overflow: hidden;
}

.news-thumbnail-box img:hover {
    transform: scale(1.1);
}

.news-thumbnail-box img {
    max-width: 200px;
    height: 100%;
    transition: all .5s;
}

.news-list-txt {
    flex: 1;
    margin-left: 30px;
    margin-top: -15px;
}

.news-list-txt h2 {
    font-size: 24px;
}

.news-list-txt h3 {
    font-size: 16px;
    font-weight: normal;
    color: #b3b4b2;
}

.news-list-txt .more {
    display: inline-block;
    width: 114px;
    height: 40px;
    background-color: #005ecf;
    color: #fff;
    text-align: center;
    line-height: 40px;
}


/* 新闻分页部分 */

.news-pagination {
    font-size: 14px;
    text-align: center;
    margin-top: 50px;
}

.news-pagination div {
    display: inline-block;
    margin-right: 24px;
}

.news-pagination div span {
    padding: 0 2px;
}

.news-pagination a {
    margin-right: 24px;
    color: #333;
}

.news-pagination input {
    width: 40px;
    height: 25px;
    border: 0;
    border: 1px solid #b3b4b2;
    margin-right: 24px;
}

@media (max-width:768px) {
    .main-container {
        margin: 0 20px;
    }
    .small-banner {
        margin-top: 95px;
    }
    .tab {
        margin-top: 30px;
    }
    .tab-list li {
        height: 60px;
        line-height: 60px;
        font-size: 18px;
    }
    .news-search-box {
        flex-wrap: wrap;
        padding-top: 30px;
    }
    .news-search-input {
        width: 100%;
        margin-right: 0;
        height: 45px;
    }
    .news-search-btn {
        width: 20%;
        height: 45px;
        margin-top: 20px;
    }
    .news-list-content {
        flex-direction: column;
        padding: 30px 0;
    }
    .news-list-txt {
        margin-left: 0;
        margin-top: 0;
    }
    .news-list-txt h2 {
        font-size: 20px;
    }
    .news-list-txt .more {
        width: 90px;
        height: 35px;
        line-height: 35px;
    }
    .news-pagination {
        margin-top: 20px;
    }
    .news-pagination .first-line {
        display: block;
    }
    .news-pagination a {
        margin-right: 5px;
    }
    .ft {
        margin-top: 50px;
    }
}