/**!
* 湖州市二级页面
* date:2021-10-28
* author: zzongyi;
*/

*,
::before,
::after {
    box-sizing: border-box;
}

/* 左侧导航 */
.nav {
    width: 305px;
    height: 870px;
    background-color: #fff;
    border-radius: 3px;
    color: #fff;
}

.nav-hd {
    height: 67px;
    line-height: 67px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 3px;
    border-radius: 3px;
    background: url('../images/sec-nav-hd.png');
    background-size: 100% 100%;
    padding: 0 42px;

}

/* 一级导航 */
.nav-bd {
    padding-top: 3px;
}

.nav-item {
    height: 50px;
    line-height: 50px;
    margin: 14px 18px 0 17px;
    background-color: #f4f4f4;
    border-radius: 3px;
    overflow: hidden;
}

.nav-item h3 {
    font-size: 18px;
    color: #666;
    border-radius: 3px;
    padding-left: 53px;
    padding-right: 30px;
    cursor: pointer;
    position: relative;
}

.nav-item h3::after {
    content: '';
    display: inline-block;
    position: absolute;
    width: 11px;
    height: 11px;
    border-right: 3px solid #cac9c9;
    border-top: 3px solid #cac9c9;
    right: 19px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

/* 二级导航 */
.nav-sec {
    padding: 15px 0;
}

.nav-sec-item a {
    display: block;
    height: 50px;
    line-height: 50px;
    color: #333;
    padding-left: 81px;
    padding-right: 40px;
    position: relative;
}

.nav-sec-item a::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #333;
    position: absolute;
    left: 65px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-sec-item a:hover {
    color: #0364cb;
}
.nav-sec-item a:hover::before {
    background-color: #0364cb;
}

/* 二级导航选中状态 */
.nav-item.current {
    height: auto;
    overflow: visible;
}
.nav-item.current h3 {
    background-color: #0364cb;
    color: #fff;
}
.nav-item.current h3::after {
    border-right: 3px solid #fff;
    border-top: 3px solid #fff;
}

/* 右侧信息列表 */
.infor {
    width: 875px;
    height: 870px;
    padding: 0 16px;
    border-radius: 3px;
    background-color: #fff;
}

.infor-hd {
    height: 66px;
    line-height: 66px;
}

.infor-bd-title {
    padding-left: 11px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

/* 搜索框 */
.search-box {
    position: relative;
    margin-right: 3px;
}

.search-input {
    width: 232px;
    height: 41px;
    border-radius: 22px;
    border: 1px solid #cbe3fc;
    background-color: #f0f7ff;
    color: #999;
    padding-left: 15px;
    padding-right: 60px;
}

.search-label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    cursor: text;
}

.search-btn1 {
    position: absolute;
    width: 18px;
    height: 18px;
    background: url('../images/search-btn1.png') no-repeat center center;
    top: 50%;
    transform: translateY(-50%);
    right: 21px;
    cursor: pointer;
}

/* 分界线 */
.line {
    height: 5px;
    background: url('../images/line.png');
}

/* 信息列表 */
.news-items {
    padding: 14px 9px 0px 9px;
    max-height: 715px;
    overflow: hidden;
}

.news-items > li {
    position: relative;
    line-height: 50px;
    vertical-align: top;
}

.news-items > li:before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    margin-top: -2px;
    width: 5px;
    height: 5px;
    background-color: #333;
    border-radius: 50%;
}

.news-items > li > a {
    padding-left: 14px;
    display: block;
    color: #333;
    margin-right: 120px;
}

.news-time {
    position: absolute;
    right: 0;
    top: 0;
    color: #999;
}

.news-items > li:hover a,
.news-items > li:hover .news-time {
    color: #2972cf;
}

.news-items > li:hover:before {
    background-color: #2972cf;
}

/* 分页 */
.pager {
    margin-top: 20px;
    margin-left: 60px;
}

.m-pagination-page li {
    margin: 0 2px;
}

.m-pagination-page > li > a {
    padding: 0 7px;
    height: 24px;
    line-height: 26px;
    text-align: center;
}
.m-pagination-page > li.active > a {
    background-color: #0364cb;
}

.m-pagination-size > select {
    height: 26px;
}

.m-pagination-info span {
    padding: 0 3px;
    color: #0364cb;
}

.m-pagination-jump {
    margin-left: 50px;
    position: relative;
}

.m-pagination-jump .m-pagination-group {
    width: 180px;
}

.m-pagination-jump::before {
    content: '跳至';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -35px;
}

.m-pagination-jump::after {
    content: '页';
    color: #666;
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
}

.m-pagination-jump input {
    margin-top: 3px;
    border: 1px solid #dedede;
    height: 24px;
}

.m-pagination-jump button {
    width: 55px;
    height: 26px;
    margin-top: 3px;
    border: 0;
    background-color: #0364cb;
    color: #fff;
    border-radius: 2px;
    margin-left: 40px;
    position: relative;
}
